I wanna troll in my game ;) Here's my script so far:
local player = game.Players.LocalPlayer if player == izanagi456 then game.Players.PlayerAdded:Connect(function(p) p.CharacterAdded:Connect(function(c) local ff = Instance.new("ForceField") ff.Visible = false ff.Parent = c end ) end ) end
You would just check if the name was yours and then add the ForceField Alot of your code was wrong too. Put this in a normal script inside ServerScriptService.
game.Players.PlayerAdded:Connect(function(p) p.CharacterAdded:Connect(function(c) if p.Name = "Your name here" then local ff = Instance.new("ForceField") ff.Visible = false ff.Parent = c end end) end)