of     2   
chevron_rightchevron_rightchevron_right

nofascistsaloudxD
#183649211Monday, February 15, 2016 5:16 AM GMT

I have scripts that change the walk speed of the player when u click a Text button but for some reason, the walk speed of the player won't change when i am playing the game from roblox. It only works in studio. here is the script: local player = game.Players.LocalPlayer script.Parent.MouseButton1Down:connect(function() player.Character.Humanoid.WalkSpeed = 40 script.Parent.Parent.Parent.StartScreen.StartInstructions.Visible = false end)
Mehssi
#183649775Monday, February 15, 2016 5:25 AM GMT

local player = game.Players.LocalPlayer repeat wait()until player.Character script.Parent.MouseButton1Down:connect(function() player.Character.Humanoid.WalkSpeed = 40 script.Parent.Parent.Parent.StartScreen.StartInstructions.Visible = false end)
nofascistsaloudxD
#183649821Monday, February 15, 2016 5:26 AM GMT

Thx, ill give it a try.
nofascistsaloudxD
#183650024Monday, February 15, 2016 5:29 AM GMT

@Mehsi dosn't work :/
12103net
#183651877Monday, February 15, 2016 6:04 AM GMT

local player = game.Players.LocalPlayer local ch=player.CharacterAdded:wait() script.Parent.MouseButton1Down:connect(function() ch.Humanoid.WalkSpeed = 40 script.Parent.Parent.Parent.StartScreen.StartInstructions.Visible = false end)
dnd256
#183652826Monday, February 15, 2016 6:26 AM GMT

Do you have Filtering Enabled on?
gangman67
#183652901Monday, February 15, 2016 6:28 AM GMT

Isn't is just Button1Down?
nofascistsaloudxD
#183804147Wednesday, February 17, 2016 4:03 AM GMT

I tried everything i am given and it still won't work in roblox player, i added another GUI that is supposed to change camera mode and it still won't work when i play it from roblox.
cofunction
#183804218Wednesday, February 17, 2016 4:04 AM GMT

Is your script a local script?
nofascistsaloudxD
#183804320Wednesday, February 17, 2016 4:05 AM GMT

No, the order in explorer is: ScreenGUI>TextButton>Script(Regular)
cofunction
#183804569Wednesday, February 17, 2016 4:09 AM GMT

When using "LocalPlayer" your script MUST be a local script.
nofascistsaloudxD
#183804609Wednesday, February 17, 2016 4:09 AM GMT

K, thx. i'll try it out.
nofascistsaloudxD
#183804801Wednesday, February 17, 2016 4:12 AM GMT

@AdvancedObjects thanks alot, i always forget about that, it worked :)
spinywind
#183807423Wednesday, February 17, 2016 4:57 AM GMT

Just a tip, if you want to access a local player on a server script just do this: script.Parent.MouseButton1Down:connect(funtcion(player) --the player is the local player like you would use in a local script --code end)
nofascistsaloudxD
#183807462Wednesday, February 17, 2016 4:58 AM GMT

@spinywind thx for the tip :)
cofunction
#183807629Wednesday, February 17, 2016 5:01 AM GMT

@Spiny. Thats false information. "funtcion(player)" will not be the player. It will return as nil.
spinywind
#183807679Wednesday, February 17, 2016 5:02 AM GMT

Its never returned nil for me...
cofunction
#183807729Wednesday, February 17, 2016 5:03 AM GMT

button.MouseButton1Click:connect(function(player) print(player) end) Output: nil
spinywind
#183807769Wednesday, February 17, 2016 5:03 AM GMT

Wait i just realized i was using it for something else. Thats probably why this code i made didnt work: game.Players.PlayerAdded:connect(function(player) if script.Parent.Value == 1 then game.Lighting["AWP-20"]:Clone().Parent = player.Backpack game.Lighting["AWP-20"]:Clone().Parent = player.StarterGear else print("Player Does Not Have Weapon Or Data Failed To Load") end end) lol than what is it used for?
cofunction
#183807852Wednesday, February 17, 2016 5:05 AM GMT

A player added even which is cloning weapons into the players backpack and startergear if script.Parent.Value is = to 1 else it will print a little error message.
spinywind
#183807949Wednesday, February 17, 2016 5:07 AM GMT

i mean ik what that code was for and what it did but it never worked. The thing is what does (player) in the parenthesis do??? Its used in leaderstats.
cofunction
#183808004Wednesday, February 17, 2016 5:09 AM GMT

It just returns the 'player' currently being added to the game via the event.
spinywind
#183808030Wednesday, February 17, 2016 5:09 AM GMT

oh so if i did local player it would work right?
cofunction
#183808113Wednesday, February 17, 2016 5:11 AM GMT

Local Player only works client sided in a local script. Otherwise it won't work.
spinywind
#183808159Wednesday, February 17, 2016 5:12 AM GMT

I know it doesnt work in a server script only in a local script.

    of     2   
chevron_rightchevron_rightchevron_right