Meliodas0_0

Baseplate jailbreak

Jul 26th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. local plr = game:GetService("Players").LocalPlayer
  2. local p = Instance.new("Part", workspace)
  3. p.Size = Vector3.new(30,0.5,30)
  4. p.Anchored = true
  5. p.Position = plr.Character.HumanoidRootPart.Position + Vector3.new(0,15,0)
  6. plr.Character:MoveTo(p.Position + Vector3.new(0,1,0))
  7. while p.Parent do
  8. wait(1)
  9. if (plr.Character.HumanoidRootPart.Position - p.Position).magnitude > 20 then
  10. p:Destroy()
  11. end
  12. end
Add Comment
Please, Sign In to add comment