of     1   

Istmaedhon
#7614023Friday, April 17, 2009 10:36 PM GMT

how would i manipulate one of my games, so that when i enter, i get god powers, this wouldn't work, while true do wait(3) game.Workspace.Istmaedhon.Head.Transparency = 1 end so what should i do.
Istmaedhon
#7614496Friday, April 17, 2009 10:46 PM GMT

Anyone...
Istmaedhon
#7614797Friday, April 17, 2009 10:52 PM GMT

Nobody?
abx1
#7614866Friday, April 17, 2009 10:54 PM GMT

output?
abx1
#7614923Friday, April 17, 2009 10:55 PM GMT

OH WAIT!!!!! I COULDNT UNDERSTAND TYPING!!! ILL MAKE NOW!!! :)
Istmaedhon
#7615170Friday, April 17, 2009 10:59 PM GMT

ok
abx1
#7615396Friday, April 17, 2009 11:03 PM GMT

while true do wait(3) game.Workspace.Istmaedhon.Humanoid.MaxHealth = 10000000000 game.Workspace.Istmaedhon.Humanoid.Health = 10000000000 game.Workspace.Istmaedhon.Left Arm.Reflectance = 1 game.Workspace.Istmaedhon.Right Arm.Reflectance = 1 game.Workspace.Istmaedhon.Left Leg.Reflectance = 1 game.Workspace.Istmaedhon.Right Leg.Reflectance = 1 game.Workspace.Istmaedhon.Torso.Reflectance = 1 game.Workspace.Istmaedhon.Head.Reflectance = 1 end --If you want it to kill people you touch then pm me.
Istmaedhon
#7616573Friday, April 17, 2009 11:28 PM GMT

i already know all this, but my loop dosent work
larryboylover92
#7617347Friday, April 17, 2009 11:44 PM GMT

Just throw a pcall in there. It's easier.
Istmaedhon
#7617663Friday, April 17, 2009 11:50 PM GMT

sorry, but whats a pcall
Thrak
#7618014Friday, April 17, 2009 11:56 PM GMT

Here. Use this. function powers() wait(6) game.Workspace.Istmaedhon.Humanoid.MaxHealth = 10000000000 game.Workspace.Istmaedhon.Humanoid.Health = 10000000000 game.Workspace.Istmaedhon.Left Arm.Reflectance = 1 game.Workspace.Istmaedhon.Right Arm.Reflectance = 1 game.Workspace.Istmaedhon.Left Leg.Reflectance = 1 game.Workspace.Istmaedhon.Right Leg.Reflectance = 1 game.Workspace.Istmaedhon.Torso.Reflectance = 1 game.Workspace.Istmaedhon.Head.Reflectance = 1 end game.Players.Istmaedhon.Character.Humanoid.Died:connect(powers) The connection should trigger a few seconds after you respawn each time.
SoccerPro79
#7622943Saturday, April 18, 2009 1:38 AM GMT

--you could try this, it should work while true do wait(.5) player = game.Workspace:findFirstChild("Istmaedhon") if(player ~= nil) then player.Head.Transparency = 1 player.Torso.Transparency = 1 player.Right Arm.Transparency = 1 player.Left Arm.Transparency = 1 player.Right Leg.Transparency = 1 player.Left Leg.Transparency = 1 end end

    of     1