• We just launched and are currently in beta. Join us as we build and grow the community.

Speed Hack Roblox (Press Q)

Gamerzito

Tech Enthusiast
G Rep
0
0
0
Rep
0
G Vouches
0
0
0
Vouches
0
Posts
62
Likes
97
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 300 XP
down = false velocity = Instance.new("BodyVelocity") velocity.maxForce = Vector3.new(100000, 0, 100000) ---vv Use that to change the speed v local speed = 150 gyro = Instance.new("BodyGyro") gyro.maxTorque = Vector3.new(100000, 0, 100000) local hum = game.Players.LocalPlayer.Character.Humanoid function onButton1Down(mouse) down = true velocity.Parent = game.Players.LocalPlayer.Character.UpperTorso velocity.velocity = (hum.MoveDirection) * speed gyro.Parent = game.Players.LocalPlayer.Character.UpperTorso while down do if not down then break end velocity.velocity = (hum.MoveDirection) * speed local refpos = gyro.Parent.Position + (gyro.Parent.Position - workspace.CurrentCamera.CoordinateFrame.p).unit * 5 gyro.cframe = CFrame.new(gyro.Parent.Position, Vector3.new(refpos.x, gyro.Parent.Position.y, refpos.z)) wait(0.1) end end function onButton1Up(mouse) velocity.Parent = nil gyro.Parent = nil down = false end --To Change the key in those 2 lines, replace the "q" with your desired key function onSelected(mouse) mouse.KeyDown:connect(function(k) if k:lower()=="q"then onButton1Down(mouse)end end) mouse.KeyUp:connect(function(k) if k:lower()=="q"then onButton1Up(mouse)end end) end onSelected(game.Players.LocalPlayer:GetMouse())
 

442,401

317,942

317,951

Top