Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Made it so when youre on a certain team you get a forcefeild. Trying to destroy (server side)?

Asked by
OFF_S4LE 127
3 years ago
wait(0.1)
local Playing = game.Teams.Playing
game.Players.PlayerAdded:Connect(function(player)
    player.CharacterAdded:Connect(function(character)
        local ForceField = player.Character.forcefield
        if player.Team == Playing then
            ForceField:Destroy()
           end
        end)
    end)
0
So what's your error? DietCokeTastesGood 111 — 3y

Answer this question