I'm trying to change a value inside of a player? (The script is isnide of a GUI)
Script :
1 | function onClicked(Player) |
2 | Player:FindFirstChild( "Class" ).Value = Player:FindFirstChild( "Class" ).Value = "Knight" |
3 | end |
Dosen't work...
The function has nothing to call it, nor is it being called.
Use this:
1 | -- Assuming this script is in a GUI button. |
2 |
3 | function onClicked(Player) |
4 | Player:FindFirstChild( "Class" ).Value = Player:FindFirstChild( "Class" ).Value = "Knight" |
5 | end |
6 |
7 | script.Parent.MouseButton 1 Click:connect(onClicked) |
I recommend using variables, using "local"
This MIGHT work:
1 | function onClicked(Player) |
2 | local class = Player:FindFirstChild( "Class" ) |
3 | class.Value = "Knight" |
4 | end |
5 |
6 | script.Parent.MouseButton 1 Click:connect(onClicked) |
But, you didn't declare what "Player" is. I recommend the following, but use a LocalScript:
1 | function onClicked(Player) |
2 | local Player = game.Players.LocalPlayer |
3 | local class = Player:FindFirstChild( "Class" ) |
4 | class.Value = "Knight" |
5 | end |
6 |
7 | script.Parent.MouseButton 1 Click:connect(onClicked) |
Please comment if you have questions!