of     1   

kobbi1
#64315090Wednesday, March 14, 2012 3:11 PM GMT

if msg == "Health" then game.Workspace.kobbi1.Humanoid.MaxHealth = math.huge end -- how i make it work D:
kihutaise
#64315782Wednesday, March 14, 2012 3:43 PM GMT

You could make GUI button that gives u lot of health. I think it would be easier to script.
BAUER102
#64315844Wednesday, March 14, 2012 3:46 PM GMT

#1 - The script doesn't know, what 'msg' is. #2 - This script checks once, when the server starts. Make it like this: game.Workspace.Message.Changed:connect(function() if workspace.Message.Text == "Health" then game.Workspace.YOURNAME.MaxHealth = math.huge game.Workspace.YOURNAME.Health = math.huge end end)

    of     1