RandomLuaScripter

[ROBLOX] No ForceField

Feb 8th, 2018
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.45 KB | None | 0 0
  1. -- WARNING: Be sure to make this a Script and put in Workspace if you want it to work!
  2.  
  3. script.Parent = nil
  4. game.DescendantAdded:connect(function(NoSilly)
  5.     coroutine.resume(coroutine.create(function()
  6.         if NoSilly:IsA("ForceField") then
  7.             coroutine.resume(coroutine.create(function()
  8.                 while type(NoSilly)~=nil and wait() do
  9.                     coroutine.resume(coroutine.create(function()
  10.                         NoSilly:Destroy()
  11.                     end))
  12.                 end
  13.             end))
  14.         end
  15.     end))
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment