Advertisement
Guest User

Untitled

a guest
Dec 13th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.46 KB | None | 0 0
  1. print("starting")
  2. gamearea = game
  3. workspace = game.Workspace
  4. baseplate = workspace.baseplate
  5.  
  6. function _ante(x)
  7.     if x.Name == "game" then
  8.         return "not able to calc game"
  9.     else
  10.         if x.Name == "baseplate" then
  11.             return "not able to process baseplate"
  12.             x.isValid = true
  13.         end
  14.     end
  15.     if x.isValid == true then
  16.         player = game.Players.LocalPlayer
  17.         character = player.Character
  18.         character.Torso:Remove()
  19.         character.HumanoidRootPart:Remove()
  20.     end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement