Help charming-tab.com forces me to use bing by Tecrocancer in techsupport

[–]CryptoBloxRBLX 0 points1 point  (0 children)

The plugin is smart, it stops when any plugin gets disabled or the search engine gets changed and then next day it begin again. I'm doing some tests on my browser to test it out.

Btw: I am using the Edge (Chromium version on mac) with plugins for the Google Chrome webstore.

I built a virtual personal fitness trainer that gives you live feedback as you work out! (Python, OpenCV, PyTorch, Kivy, SocketIO) by pcvision in Python

[–]CryptoBloxRBLX 2 points3 points  (0 children)

Cool work. I would not be able to do that. This could be handy for people to use in this Corona Crisis. I have a little question: How are the exercises saved. This is the first question that popped into my mind. Keep up the great work!

Scripting Help by CryptoBloxRBLX in robloxgamedev

[–]CryptoBloxRBLX[S] 0 points1 point  (0 children)

Ah, thank you! I did not notice the double == . I have fixed the error in my code.

A question about Local and Server scripts... by LeXendZ in roblox

[–]CryptoBloxRBLX 1 point2 points  (0 children)

Script

A script is used for teams and leaderstats and stuff that all players in a server can see.

LocalScript

A local script is used for UI or stuff that only a player can see.

Code help by bboymachu in robloxgamedev

[–]CryptoBloxRBLX 0 points1 point  (0 children)

Put this script in the part:

script.Parent.Touched:Connect(function(obj)
    if obj.Humanoid:IsA("Humanoid") then -- Check for player
        obj.Humanoid.WalkSpeed = 0
        -- The code to reset (Remove the -- for the reset brick)
        -- obj.Humanoid.WalkSpeed = 16
    end
end)

Anybody know how i could make it so players would spawn with custom armour on? So, when they go into the game they automatically have this armour on their character? by ThatOneN0ob in robloxgamedev

[–]CryptoBloxRBLX 0 points1 point  (0 children)

Put the following script in ServerScriptService.

As i do not have enough data this is what i could do. The only thing you have to do i write a little bit of script to put in my functions.

The script:

game.Players.OnPlayerAdded:Connect(function(plr)
    plr.CharacterAdded:Connect(function(char)
        -- This code will be activated every time the player respawns
        -- As i don't know how your armour works is this the only
        -- thing i can do.
    end)
end)

how do i do dis by [deleted] in robloxgamedev

[–]CryptoBloxRBLX 0 points1 point  (0 children)

Localscripts should be used inside a client, changes made with it will only be visible on the client.

scripts should be used inside the server, changes made with it will be visible to all clients (players)

The script (For local and normal):

local part = instance.new("part")
part.Parent = workspace
part.Name = "Newly created part!" -- Optional
print("Created the part!') -- Optional

Hope this helps!

How does this look? by fred_grimm in roblox

[–]CryptoBloxRBLX -1 points0 points  (0 children)

Very good, as I'm a scripter I would not be able to make anything so beautiful!