R

every sekond walk speed

public
rrixh May 07, 2024 Never 36
Clone
Plaintext everysekondwalkspeed_lulaslollipop 131 lines (114 loc) | 3.55 KB
1
if game.PlaceId == 12742233841 then
2
3
local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
4
local Window = OrionLib:MakeWindow({Name = "BaconBoss Hub | Every Second You Get +1 WalkSpeed ", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
5
6
getgenv().tpPlace = "string"
7
getgenv().autotp = true
8
getgenv().rb = true
9
getgenv().spin = true
10
getgenv().bspin = true
11
12
function Teleport(teleportPlace)
13
local player = game.Players.LocalPlayer
14
player.Character.HumanoidRootPart.CFrame = teleportPlace
15
end
16
17
function autotp()
18
while getgenv().autotp == true do
19
Teleport(game:GetService("Workspace").Wins.SteampunkStage.CFrame)
20
wait(0.1)
21
end
22
end
23
24
function rb()
25
while getgenv().rb == true do
26
game:GetService("ReplicatedStorage").RebirthEvent:FireServer()
27
wait(0.1)
28
end
29
end
30
31
function spin()
32
while getgenv().spin == true do
33
game:GetService("ReplicatedStorage").SpinRemote:InvokeServer()
34
wait(0.1)
35
end
36
end
37
38
function bspin()
39
while getgenv().bspin == true do
40
game:GetService("ReplicatedStorage").SpinnerUpdate:FireServer("BuySpin")
41
wait(0.1)
42
end
43
end
44
45
local TpTab = Window:MakeTab({
46
Name = "Auto Farm",
47
Icon = "rbxassetid://4483345998",
48
PremiumOnly = false
49
})
50
51
local otherTab = Window:MakeTab({
52
Name = "Other",
53
Icon = "rbxassetid://4483345998",
54
PremiumOnly = false
55
})
56
57
TpTab:AddLabel("Note: Work Very Well With Tall Avatars")
58
59
TpTab:AddToggle({
60
Name = "Auto Best Win",
61
Default = false,
62
Callback = function(Value)
63
getgenv().autotp = Value
64
autotp()
65
end
66
})
67
68
otherTab:AddToggle({
69
Name = "Auto Spin",
70
Default = false,
71
Callback = function(Value)
72
getgenv().spin = Value
73
spin()
74
end
75
})
76
77
otherTab:AddToggle({
78
Name = "Auto Buy Spin",
79
Default = false,
80
Callback = function(Value)
81
getgenv().bspin = Value
82
bspin()
83
end
84
})
85
86
otherTab:AddToggle({
87
Name = "Auto Rebirth",
88
Default = false,
89
Callback = function(Value)
90
getgenv().rb = Value
91
rb()
92
end
93
})
94
95
TpTab:AddDropdown({
96
Name = "Select",
97
Default = "1 Win",
98
Options = {"1 Win", "2 Win", "3 Win", "4 Win", "5 Win", "6 Win", "7 Win", "8 Win", "9 Win", "10 Win",},
99
Callback = function(Value)
100
getgenv().tpPlace = Value
101
end
102
})
103
104
TpTab:AddButton({
105
Name = "Win",
106
Callback = function()
107
if getgenv().tpPlace == "1 Win" then
108
Teleport(game:GetService("Workspace").Wins.ConveyorStage.CFrame)
109
elseif getgenv().tpPlace == "2 Win" then
110
Teleport(game:GetService("Workspace").Wins.LaserStage.CFrame)
111
elseif getgenv().tpPlace == "3 Win" then
112
Teleport(game:GetService("Workspace").Wins.TrussStage.CFrame)
113
elseif getgenv().tpPlace == "4 Win" then
114
Teleport(game:GetService("Workspace").Wins.World4.CFrame)
115
elseif getgenv().tpPlace == "5 Win" then
116
Teleport(game:GetService("Workspace").Wins.World5.CFrame)
117
elseif getgenv().tpPlace == "6 Win" then
118
Teleport(game:GetService("Workspace").Wins.World6.CFrame)
119
elseif getgenv().tpPlace == "7 Win" then
120
Teleport(game:GetService("Workspace").Wins.Stage7.CFrame)
121
elseif getgenv().tpPlace == "8 Win" then
122
Teleport(game:GetService("Workspace").Wins.Stage8.CFrame)
123
elseif getgenv().tpPlace == "9 Win" then
124
Teleport(game:GetService("Workspace").Wins.DesertStage.CFrame)
125
elseif getgenv().tpPlace == "10 Win" then
126
Teleport(game:GetService("Workspace").Wins.SteampunkStage.CFrame)
127
end
128
end
129
})
130
131
end