of     1   

andr315j
#215840280Wednesday, May 03, 2017 7:23 AM GMT

--The button wont work! function onClicked() local Cash = game.Players.LocalPlayer.leaderstats.Cash.Value local RebornValue = 25000000 local Life = game.Players.LocalPlayer.leaderstats.Life.Value if Cash >= RebornValue then print"It worked" Life = Life + 1 Cash = 50 else print":null" end end script.Parent.RebornFrame.RebornButton.MouseButton1Click:connect(onClicked)
andr315j
#215840412Wednesday, May 03, 2017 7:28 AM GMT

Also no errors in output...
aIexet
#215840740Wednesday, May 03, 2017 7:47 AM GMT

you can use print()s to identify whether the event is being fired at all etc etc.

    of     1