|
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) |
|
MehssiJoin Date: 2015-03-15 Post Count: 599 |
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) |
|
|
|
12103netJoin Date: 2013-07-08 Post Count: 350 |
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) |
|
dnd256Join Date: 2009-03-24 Post Count: 1373 |
Do you have Filtering Enabled on? |
|
gangman67Join Date: 2011-06-04 Post Count: 798 |
Isn't is just Button1Down? |
|
|
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. |
|
|
Is your script a local script?
|
|
|
No, the order in explorer is:
ScreenGUI>TextButton>Script(Regular) |
|
|
When using "LocalPlayer" your script MUST be a local script.
|
|
|
|
@AdvancedObjects thanks alot, i always forget about that, it worked :) |
|
spinywindJoin Date: 2012-01-26 Post Count: 3580 |
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)
|
|
|
@spinywind thx for the tip :) |
|
|
@Spiny.
Thats false information.
"funtcion(player)" will not be the player. It will return as nil.
|
|
spinywindJoin Date: 2012-01-26 Post Count: 3580 |
Its never returned nil for me...
|
|
|
button.MouseButton1Click:connect(function(player)
print(player)
end)
Output: nil
|
|
spinywindJoin Date: 2012-01-26 Post Count: 3580 |
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?
|
|
|
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.
|
|
spinywindJoin Date: 2012-01-26 Post Count: 3580 |
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.
|
|
|
It just returns the 'player' currently being added to the game via the event.
|
|
spinywindJoin Date: 2012-01-26 Post Count: 3580 |
oh so if i did local player it would work right?
|
|
|
Local Player only works client sided in a local script. Otherwise it won't work.
|
|
spinywindJoin Date: 2012-01-26 Post Count: 3580 |
I know it doesnt work in a server script only in a local script.
|
|