ADVERTISEMENTREMOVE ADS
Game icon

deadrails

Steal A Dead Rails
3 months ago
Script preview thumbnail
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)

Tested with

ADVERTISEMENTREMOVE ADS
22 Lines • 580 Bytes
Raw
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

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS