-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunisaber.lua
53 lines (44 loc) · 1.63 KB
/
funisaber.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/joeengo/exploiting/main/EngoUILIB_V2.lua"))()
local main = library:CreateMain("8pmX8 hub", "Saber Simulator", Enum.KeyCode.RightShift)
local tab = main:CreateTab("Main Hack")
local plrtab = main:CreateTab("Player Hacks")
--MAIN HACKS
tab:CreateToggle("Auto swing", function(v)
getgenv().yes = v
while true do
if not getgenv().yes then return end
local Target = game:GetService("ReplicatedStorage").Events.Clicked;
Target:FireServer();
game:GetService("ReplicatedStorage").Events.Clicked:FireServer()
wait()
end
end)
tab:CreateToggle("Auto sell", function(v)
getgenv().funi = v
while true do
if not getgenv().funi then return end
oldpos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(532.807312, 183.837784, 149.856171)
wait(1)
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = oldpos
wait(1)
end
end)
tab:CreateToggle("Auto buy all swords", function(v)
getgenv().autobuy = v
while true do
if not getgenv().autobuy then return end
local string_1 = "Swords";
local Target = game:GetService("ReplicatedStorage").Events.BuyAll;
Target:FireServer(string_1);
wait(5)
end
end)
--PLAYER HACKS
plrtab:CreateSlider("Walkspeed", 16, 256, function(v)
while true do
plr = game.Players.LocalPlayer
plr.Character.Humanoid.WalkSpeed = v
wait(0.1)
end
end)