Advertisement
Imperious123

Untitled

Dec 8th, 2019
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. plr = game:service'Players'.LocalPlayer
  2. char = plr.Character
  3. root = char.HumanoidRootPart
  4. iszombie = false
  5.  
  6. platform = Instance.new('Part', workspace)
  7. platform.Size = Vector3.new(100,0,100)
  8. platform.Anchored = true
  9. platform.Position = Vector3.new(555,555,555)
  10. root.CFrame = platform.CFrame * CFrame.new(0,4,0)
  11.  
  12. if workspace:FindFirstChild(plr.Name) then
  13. iszombie = false
  14. warn'You are not a zombie!'
  15. else
  16. iszombie = true
  17. warn'You are a zombie!'
  18. end
  19.  
  20. wait(.5)
  21.  
  22. if not iszombie then
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement