Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

--[[

A distribution of https://wearedevs.net/scripts
Last updated August 2, 2021

Description: Magnetizes you to the selected player's character. To choose a player,


enter their name between the quotes immediately after the MagnetizeToTarget
variable
below.

Instruction: Inject this script into any game using a Lua executor like JJSploit.
]]

_G.MagnetizeToTarget = ""

game:GetService('RunService').Stepped:connect(function()
for i,v in pairs
(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
if v:IsA("BasePart") then
v.CanCollide = false
end
end
end)
b = Instance.new("RocketPropulsion")
b.Parent = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
b.Target =
game:GetService("Players"):FindFirstChild(_G.MagnetizeToTarget).Character.HumanoidR
ootPart
b.TurnP = 20000
b.MaxThrust = 20000
b.MaxSpeed = 1000
b.ThrustP = 13000
b:Fire()

You might also like