Üye
local player = game.Players.LocalPlayer
local mouse = player:GetMouse()
local Character = player.Character or player.CharacterAdded:wait()
speed = 15 --Only change this
getgenv().Toggled=false
getgenv().KeyBind="c" --Only change this
getgenv().Delay=0
local UIS=game:GetService'UserInputService'
local function Source()
--Script
player.Character.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame + player.Character.HumanoidRootPart.CFrame.lookVector*speed --Change 10 the distance you want the player to be able to teleport
print('l')
end
UIS.InputBegan:Connect(function(Key)
if Key.KeyCode==Enum.KeyCode[getgenv().KeyBind:upper()] and not UIS:GetFocusedTextBox() then
if getgenv().Toggled then
getgenv().Toggled=false
warn'Disabled!'
elseif not getgenv().Toggled then
getgenv().Toggled=true
warn'Enabled!'
while getgenv().Toggled do
Source()
wait(getgenv().Delay)
end
end
end
end)
paylaştığın için teşekkürlerRoblox speedhack
You can change speed here fifth line: speed = 15 --Only change this
Button: "c"
Lua:local player = game.Players.LocalPlayer local mouse = player:GetMouse() local Character = player.Character or player.CharacterAdded:wait() speed = 15 --Only change this getgenv().Toggled=false getgenv().KeyBind="c" --Only change this getgenv().Delay=0 local UIS=game:GetService'UserInputService' local function Source() --Script player.Character.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame + player.Character.HumanoidRootPart.CFrame.lookVector*speed --Change 10 the distance you want the player to be able to teleport print('l') end UIS.InputBegan:Connect(function(Key) if Key.KeyCode==Enum.KeyCode[getgenv().KeyBind:upper()] and not UIS:GetFocusedTextBox() then if getgenv().Toggled then getgenv().Toggled=false warn'Disabled!' elseif not getgenv().Toggled then getgenv().Toggled=true warn'Enabled!' while getgenv().Toggled do Source() wait(getgenv().Delay) end end end end)
Working on official servers as well?Roblox speedhack
You can change speed here fifth line: speed = 15 --Only change this
Button: "c"
Lua:local player = game.Players.LocalPlayer local mouse = player:GetMouse() local Character = player.Character or player.CharacterAdded:wait() speed = 15 --Only change this getgenv().Toggled=false getgenv().KeyBind="c" --Only change this getgenv().Delay=0 local UIS=game:GetService'UserInputService' local function Source() --Script player.Character.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame + player.Character.HumanoidRootPart.CFrame.lookVector*speed --Change 10 the distance you want the player to be able to teleport print('l') end UIS.InputBegan:Connect(function(Key) if Key.KeyCode==Enum.KeyCode[getgenv().KeyBind:upper()] and not UIS:GetFocusedTextBox() then if getgenv().Toggled then getgenv().Toggled=false warn'Disabled!' elseif not getgenv().Toggled then getgenv().Toggled=true warn'Enabled!' while getgenv().Toggled do Source() wait(getgenv().Delay) end end end end)
Have you tested or just saying like that?very nice job i like it very much
Thank you very good jobRoblox speedhack
You can change speed here fifth line: speed = 15 --Only change this
Button: "c"
Lua:local player = game.Players.LocalPlayer local mouse = player:GetMouse() local Character = player.Character or player.CharacterAdded:wait() speed = 15 --Only change this getgenv().Toggled=false getgenv().KeyBind="c" --Only change this getgenv().Delay=0 local UIS=game:GetService'UserInputService' local function Source() --Script player.Character.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame + player.Character.HumanoidRootPart.CFrame.lookVector*speed --Change 10 the distance you want the player to be able to teleport print('l') end UIS.InputBegan:Connect(function(Key) if Key.KeyCode==Enum.KeyCode[getgenv().KeyBind:upper()] and not UIS:GetFocusedTextBox() then if getgenv().Toggled then getgenv().Toggled=false warn'Disabled!' elseif not getgenv().Toggled then getgenv().Toggled=true warn'Enabled!' while getgenv().Toggled do Source() wait(getgenv().Delay) end end end end)
look good dude thank you manRoblox speedhack
You can change speed here fifth line: speed = 15 --Only change this
Button: "c"
Lua:local player = game.Players.LocalPlayer local mouse = player:GetMouse() local Character = player.Character or player.CharacterAdded:wait() speed = 15 --Only change this getgenv().Toggled=false getgenv().KeyBind="c" --Only change this getgenv().Delay=0 local UIS=game:GetService'UserInputService' local function Source() --Script player.Character.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame + player.Character.HumanoidRootPart.CFrame.lookVector*speed --Change 10 the distance you want the player to be able to teleport print('l') end UIS.InputBegan:Connect(function(Key) if Key.KeyCode==Enum.KeyCode[getgenv().KeyBind:upper()] and not UIS:GetFocusedTextBox() then if getgenv().Toggled then getgenv().Toggled=false warn'Disabled!' elseif not getgenv().Toggled then getgenv().Toggled=true warn'Enabled!' while getgenv().Toggled do Source() wait(getgenv().Delay) end end end end)
with an executor you can use it all it doesnt matter offical or unoffical also you can use this:Working on official servers as well?
Thanks for confirmationwith an executor you can use it all it doesnt matter offical or unoffical also you can use this:
_G.Doge = true;
_G.dogespeed = 80;
local mt = getrawmetatable(game)
local old = mt.__newindex
setreadonly(mt, false)
mt.__newindex = newcclosure(function(t,k,v)
pcall(function()
if t == game:GetService("Players").LocalPlayer.Character.Humanoid and k == "WalkSpeed" and _G.Doge then
v = _G.dogespeed;
end
end)
return old(t,k,v)
end)
this one for shindo life but you can modify for you game.
yup keep goingvery nice, good job
what compiler do you use?Roblox speedhack
You can change speed here fifth line: speed = 15 --Only change this
Button: "c"
Lua:local player = game.Players.LocalPlayer local mouse = player:GetMouse() local Character = player.Character or player.CharacterAdded:wait() speed = 15 --Only change this getgenv().Toggled=false getgenv().KeyBind="c" --Only change this getgenv().Delay=0 local UIS=game:GetService'UserInputService' local function Source() --Script player.Character.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame + player.Character.HumanoidRootPart.CFrame.lookVector*speed --Change 10 the distance you want the player to be able to teleport print('l') end UIS.InputBegan:Connect(function(Key) if Key.KeyCode==Enum.KeyCode[getgenv().KeyBind:upper()] and not UIS:GetFocusedTextBox() then if getgenv().Toggled then getgenv().Toggled=false warn'Disabled!' elseif not getgenv().Toggled then getgenv().Toggled=true warn'Enabled!' while getgenv().Toggled do Source() wait(getgenv().Delay) end end end end)
thanks for code have a nice daysRoblox speedhack
You can change speed here fifth line: speed = 15 --Only change this
Button: "c"
Lua:local player = game.Players.LocalPlayer local mouse = player:GetMouse() local Character = player.Character or player.CharacterAdded:wait() speed = 15 --Only change this getgenv().Toggled=false getgenv().KeyBind="c" --Only change this getgenv().Delay=0 local UIS=game:GetService'UserInputService' local function Source() --Script player.Character.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame + player.Character.HumanoidRootPart.CFrame.lookVector*speed --Change 10 the distance you want the player to be able to teleport print('l') end UIS.InputBegan:Connect(function(Key) if Key.KeyCode==Enum.KeyCode[getgenv().KeyBind:upper()] and not UIS:GetFocusedTextBox() then if getgenv().Toggled then getgenv().Toggled=false warn'Disabled!' elseif not getgenv().Toggled then getgenv().Toggled=true warn'Enabled!' while getgenv().Toggled do Source() wait(getgenv().Delay) end end end end)
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?