Advertisement
EconomicSerg

Command

Jan 6th, 2021
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 KB | None | 0 0
  1. game.Players.PlayerAdded:Connect(function(player)
  2.     player.Chatted:Connect(function(msg)
  3.         local Command = "/ff"
  4.         if msg == Command then
  5.             local FF = Instance.new("ForceField")
  6.             FF.Parent = player.Character
  7.         end
  8.     end)
  9. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement