Categories > Exploiting > Roblox >

How do I find scripts?

Posts: 42

Threads: 21

Joined: Nov, 2021

Reputation: 0

Posted

I use JJSploit and always find myself needing all these hacks for every game, how do I find all the scripts all together so I don't have to ask on forums for every game? 

 

1. ) aimbot

  • heavily customizable

2. ) fly script

  • Can adjust speed

3. ) speed hack

  • Can adjust how fast I want to go. 

4. ) infinite jump

 

 

All that with saves and hotkeys built into them. 

 

 

 

 

 

  • 0

Posts: 539

Threads: 30

Joined: Feb, 2020

Reputation: 10

Replied

https://wearedevs.net/scripts

  • 0

 

 

 

Moon

Moon

vip

Posts: 6198

Threads: 262

Joined: Aug, 2020

Reputation: 77

Replied

Keep in mind, some scripts may not work on some games

 

Also you can just get them by a simple Google search

  • 0

Posts: 78

Threads: 12

Joined: Jan, 2022

Reputation: 7

Replied

RoWare + JJSploit

  • 0

Thank you Swiney2, Vilictus and SnowyWaves for the +reps

https://i.imgur.com/ZilSxfo.png

Posts: 42

Threads: 21

Joined: Nov, 2021

Reputation: 0

Replied

@Moon Google searches for scripts suck, they're always outdated and you can never find the right one for example I searched for speed hacking for Roblox Jailbreak and couldn't find anything about what I said "speed hacking" for that game.

  • 0

DJgt

Escobar

Posts: 71

Threads: 0

Joined: Feb, 2022

Reputation: 1

Replied

u could search on youtube for example adopt me scripts just go onto the paste bin link then copy and paste in ur executor

  • 0

https://cdn.discordapp.com/attachments/1015248297906163773/1023178023748513832/giphy.gif

MainDab

Main_EX

Posts: 332

Threads: 29

Joined: Sep, 2020

Reputation: 10

Replied

Generic aimbot

You should be able to find some online, please search via Google since I don't really have an aimbot in my inventory

Fly script
I don't have one where you could adjust speed, however I will paste here a fly script you can modify yourself (go to line 13)

-- Press "E" to fly.
repeat wait()
   until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
local mouse = game.Players.LocalPlayer:GetMouse()
repeat wait() until mouse
local plr = game.Players.LocalPlayer
local torso = plr.Character.Torso
local flying = true
local deb = true
local ctrl = {f = 0, b = 0, l = 0, r = 0}
local lastctrl = {f = 0, b = 0, l = 0, r = 0}
local maxspeed = 50 // CHANGE THIS VALUE
local speed = 0

function Fly()
local bg = Instance.new("BodyGyro", torso)
bg.P = 9e4
bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
bg.cframe = torso.CFrame
local bv = Instance.new("BodyVelocity", torso)
bv.velocity = Vector3.new(0,0.1,0)
bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
repeat wait()
plr.Character.Humanoid.PlatformStand = true
if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
speed = speed+.5+(speed/maxspeed)
if speed > maxspeed then
speed = maxspeed
end
elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
speed = speed-1
if speed < 0 then
speed = 0
end
end
if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
else
bv.velocity = Vector3.new(0,0.1,0)
end
bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
until not flying
ctrl = {f = 0, b = 0, l = 0, r = 0}
lastctrl = {f = 0, b = 0, l = 0, r = 0}
speed = 0
bg:Destroy()
bv:Destroy()
plr.Character.Humanoid.PlatformStand = false
end
mouse.KeyDown:connect(function(key)
if key:lower() == "e" then
if flying then flying = false
else
flying = true
Fly()
end
elseif key:lower() == "w" then
ctrl.f = 1
elseif key:lower() == "s" then
ctrl.b = -1
elseif key:lower() == "a" then
ctrl.l = -1
elseif key:lower() == "d" then
ctrl.r = 1
end
end)
mouse.KeyUp:connect(function(key)
if key:lower() == "w" then
ctrl.f = 0
elseif key:lower() == "s" then
ctrl.b = 0
elseif key:lower() == "a" then
ctrl.l = 0
elseif key:lower() == "d" then
ctrl.r = 0
end
end)
Fly()

 

Speed hack

This is something pretty basic... I would be shocked if you can't figure this out

Infinite jump

 

local Player = game:GetService'Players'.LocalPlayer;
local UIS = game:GetService'UserInputService';

_G.JumpHeight = 50;

function Action(Object, Function) if Object ~= nil then Function(Object); end end

UIS.InputBegan:connect(function(UserInput)
    if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
        Action(Player.Character.Humanoid, function(self)
            if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
                Action(self.Parent.HumanoidRootPart, function(self)
                    self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
                end)
            end
        end)
    end
end)
  • 0

Added

Also another keynote that some games have anti exploits against these scripts

  • 0

Posts: 42

Threads: 21

Joined: Nov, 2021

Reputation: 0

Replied

@YoDuh No, looking up hacks on YouTube are filled up scam videos, nearly impossible to find a legit one. 

  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )