of     1   

Low_Flo
#183702562Monday, February 15, 2016 9:55 PM GMT

I have this so far, function onPlayerEntered(player) repeat wait () until player.Character -- insert gui to start local Screen = script.Parent local main = Screen.MainFrame main.Visible = true local amount = player.Amount.Value amount = 0.01 wait(1) player.Character.Torso.Anchored = true end game.Players.PlayerAdded:connect(onPlayerEntered) onPlayerEntered(game.Players:WaitForChild("Player")) -- Has to be done since it doesn't work offline for some reason. Everything seems to be working fine. My problem is the amount will not change into 0.01, it is a intvalue just like in a stat leaderboard. It is directly in the player. Basically it is like a cookie clicker and each tie they click a gui button their money increases by the amount. That is the purpose for it. I can't seem to find out why it is still at zero when I test it. ~iiMitchie
Wrathsong
#183703145Monday, February 15, 2016 10:02 PM GMT

IntValues don't support decimals. Use NumberValues
Low_Flo
#183725196Tuesday, February 16, 2016 1:54 AM GMT

I fixed it and it is still not working. ~iiMitchie
Wrathsong
#183725470Tuesday, February 16, 2016 1:57 AM GMT

are you sure its not player.leaderstats.amount instead of player.amount or something? idk
Low_Flo
#183725577Tuesday, February 16, 2016 1:58 AM GMT

I am positive the amount is a value of player not leaderstats. I have no idea why it is not working... Thanks for your help if you cannot think of anything else. ~iiMitchie

    of     1