of     1   

TheBoyOnTheBlock
#138928749Wednesday, July 02, 2014 1:28 AM GMT

difficulty = game.Players.LocalPlayer:findFirstChild("leaderstats").Difficulty script.Parent.MouseButton1Click:connect(function() player = game.Players.LocalPlayer player:WaitForDataReady() if player.DataReady then plyr:SaveNumber("Difficulty", difficulty.Value) end end) difficulty = game.Players.LocalPlayer:findFirstChild("leaderstats").Difficulty script.Parent.MouseButton1Click:connect(function() player = game.Players.LocalPlayer player:WaitForDataReady() if player.DataReady then plyr:LoadNumber("Difficulty", difficulty.Value) end end) Yes, I know there's DataStore. No, I won't use it.
TheBoyOnTheBlock
#138929616Wednesday, July 02, 2014 1:36 AM GMT

Bump
TheBoyOnTheBlock
#138930756Wednesday, July 02, 2014 1:47 AM GMT

Hello?
tinarg
#138931180Wednesday, July 02, 2014 1:51 AM GMT

What is the script supposed to do?
robomax11
#138931325Wednesday, July 02, 2014 1:53 AM GMT

local difficulty = game.Players.LocalPlayer:findFirstChild("leaderstats"):WaitForChild('Difficulty') script.Parent.MouseButton1Click:connect(function() player = game.Players.LocalPlayer player:WaitForDataReady() player:SaveNumber("Difficulty", difficulty.Value) end end) difficulty = game.Players.LocalPlayer:findFirstChild("leaderstats").Difficulty script.Parent.MouseButton1Click:connect(function() player = game.Players.LocalPlayer player:WaitForDataReady() difficulty.Value = tonumber(player:LoadNumber("Difficulty")) player:LoadCharacter() end end) siggys r stupid
TheBoyOnTheBlock
#138933270Wednesday, July 02, 2014 2:11 AM GMT

It's supposed to be save and load buttons. These two scripts are separated.
TheBoyOnTheBlock
#138933818Wednesday, July 02, 2014 2:16 AM GMT

The script robo posted didn't work.
TheBoyOnTheBlock
#138934041Wednesday, July 02, 2014 2:17 AM GMT

Also, it's a localscript if that changes anything.
TheBoyOnTheBlock
#138943526Wednesday, July 02, 2014 3:50 AM GMT

Help
TheBoyOnTheBlock
#138945728Wednesday, July 02, 2014 4:16 AM GMT

bUMP
TheBoyOnTheBlock
#138946258Wednesday, July 02, 2014 4:23 AM GMT

Come on now you are just ignoring me.

    of     1