of     1   

Zaoku
#139277403Saturday, July 05, 2014 3:15 AM GMT

Hey guys, I'm trying to make this script to where if you have a ForceField and if you were on a specific team, you would be teleported back to your team's safety room. But if you didn't have a ForceField, you'd die. Here's the script: char = script.Parent.Parent.Parent.Parent.Parent char_plyr = char.Character char_team = char.TeamColor script.Parent.MouseButton1Down:connect(function() char_team = char.TeamColor ff = char_plyr:findFirstChild("ForceField") if char_team == "Bright blue" and ff then ff:remove() char_plyr.Torso.CFrame = CFrame.new(-62, 5, 150) elseif char_team == "Bright red" and ff then ff:remove() char_plyr.Torso.CFrame = CFrame.new(-32, 5, 150) else char_plyr.Humanoid.Health = 0 end end) I really need to find out what the heck the issue is, because I've been trying to find out for hours. Thanks, -Mister Zaoku
Zaoku
#139278542Saturday, July 05, 2014 3:28 AM GMT

asdfghjkl; bump1
Zaoku
#139280221Saturday, July 05, 2014 3:47 AM GMT

Can someone please help me? I really need a resolution so I can learn for the future.
Zaoku
#139329706Saturday, July 05, 2014 5:42 PM GMT

Please, anyone?
Zaoku
#139639949Tuesday, July 08, 2014 1:56 PM GMT

PLEASE HELP. ;n;
Champion121212
#139640355Tuesday, July 08, 2014 2:03 PM GMT

I am no expert, but it looks ok to me.

    of     1