roduprus

roblox bl##job script

Nov 15th, 2024
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.99 KB | Source Code | 0 0
  1. --teleports you to you get sucked by the selected victim. maybe ill later make a gui dunno.
  2. --dont jump while using it. too lazy to fix that.
  3.  
  4. local player=game.Players.LocalPlayer;local character=player.Character or player.CharacterAdded:Wait();local humanoidRootPart=character:WaitForChild("HumanoidRootPart");local humanoid=character:WaitForChild("Humanoid");local targetName="PUTUSERNAMEHEREIMTOOLAZYTOMAKEAGUI";local target=game.Workspace:FindFirstChild(targetName) and game.Workspace[targetName]:FindFirstChild("HumanoidRootPart");if not target then return end;_G.LOOP=true;local function updatePositionAndOrientation() humanoidRootPart.CFrame=target.CFrameCFrame.new(0,2.2,-1)CFrame.Angles(0,math.rad(180),0);humanoid.Sit=true end;local function zeroGravity() while _G.LOOP do humanoidRootPart.AssemblyLinearVelocity=Vector3.new(0,0,0);task.wait(0.01) end end;humanoid.Died:Connect(function() _G.LOOP=false end);task.spawn(zeroGravity);while _G.LOOP do task.wait();updatePositionAndOrientation() end
Add Comment
Please, Sign In to add comment