ADVERTISEMENTREMOVE ADS
deadrails
47,924 views
Script Preview
Description
when u steal a item exe the script and it will send u up into the air and hold u there for a bit (u can use this to steal easy)
ADVERTISEMENTREMOVE ADS
22 Lines • 580 Bytes
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local rootPart = character:WaitForChild("HumanoidRootPart")
local bodyPosition = Instance.new("BodyPosition")
bodyPosition.MaxForce = Vector3.new(0, math.huge, 0)
bodyPosition.P = 10000
bodyPosition.D = 1000
bodyPosition.Position = rootPart.Position
bodyPosition.Parent = rootPart
bodyPosition.Position = rootPart.Position + Vector3.new(0, 50, 0)
wait(1) -- hover at top
bodyPosition.Position = rootPart.Position
wait(1)
bodyPosition:Destroy()
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS





Comments