-
Notifications
You must be signed in to change notification settings - Fork 0
/
ULSRemake.lua
336 lines (296 loc) · 8.25 KB
/
ULSRemake.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
repeat wait() until game:IsLoaded()
-- Making sure the game is Treasure Hunt Simulator
if game.PlaceId ~= 2472820296 then
game.Players.LocalPlayer:Kick("This script only works on Ultimate Lifting Simulator.")
end
local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
OrionLib:MakeNotification({
Name = "Welcome!",
Content = "Some features may be added in the future, or removed.",
Image = "rbxassetid://4483345998",
Time = 5
})
local Window = OrionLib:MakeWindow({Name = "Ultimate Lifting Simulator [Discontinued.]", HidePremium = false, SaveConfig = true, ConfigFolder = "Orion"})
--Player Tab--
local PlayerTab = Window:MakeTab({
Name = "Player",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local PlayerSection = PlayerTab:AddSection({
Name = "Player"
})
PlayerSection:AddSlider({
Name = "Walkspeed",
Min = 16,
Max = 1000,
Default = 5,
Color = Color3.fromRGB(255,0,255),
Increment = 4,
ValueName = "Walkspeed",
Callback = function(Value)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
end
})
PlayerSection:AddSlider({
Name = "Jump Power",
Min = 50,
Max = 1000,
Default = 5,
Color = Color3.fromRGB(255,0,0),
Increment = 4,
ValueName = "Jump Power",
Callback = function(Value)
game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
end
})
--Player Tab End--
--Fun Stuff Tab
local FunStuffTab = Window:MakeTab({
Name = "Fun Stuff",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local FunStuffSection = FunStuffTab:AddSection({
Name = "Fun Stuff"
})
FunStuffTab:AddButton({
Name = "Lag the server",
Callback = function()
while true do
local string_1 = "Punch";
local Target = game:GetService("ReplicatedStorage").Events.Equip;
Target:FireServer(string_1);
task.wait()
end
end,
})
FunStuffTab:AddButton({
Name = "Spam your stomps",
Callback = function()
pcall(function()
game:GetService('RunService').Stepped:connect(function()
local Event = game:GetService("ReplicatedStorage").Events.Stomp
Event:InvokeServer()
end) end)
end,
})
--Fun Stuff Tab End--
--Farming Tab
local FarmingTab = Window:MakeTab({
Name = "Farming",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local FarmingSection = FarmingTab:AddSection({
Name = "Farming"
})
FarmingTab:AddToggle({
Name = "Auto-lift",
Default = false,
Save = false,
Callback = function(Value)
if Value then
_G.Print = true
while _G.Print do
task.wait()
for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
if v.Name == Text then v:Activate() end
end
local Event = game:GetService("ReplicatedStorage").Events.str
Event:InvokeServer(A_1)
end
else
_G.Print = false
end
-- The variable (Value) is a boolean on whether the toggle is true or false
end,
})
FarmingTab:AddButton({
Name = "Auto rebirth",
Callback = function()
pcall(function()
game:GetService('RunService').Stepped:connect(function()
game:GetService("ReplicatedStorage").Events.Rebirth:InvokeServer()
end) end)
end,
})
FarmingTab:AddTextbox({
Name = "Select a weight",
Default = "",
TextDisappear = true,
Callback = function(Value)
_G.equip = true
while _G.equip do
wait()
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v.Name == Value then
v.Parent = game.Players.LocalPlayer.Character
else _G.equip = false
end
end
end
end,
})
FarmingTab:AddBind({
Name = "Unequip weight [for PC users]",
Default = Enum.KeyCode.U,
Hold = false,
Callback = function()
local Players = game:GetService("Players")
local ContextActionService = game:GetService("ContextActionService")
local player = Players.LocalPlayer
ContextActionService:BindAction("unequipTools", function(_, userInputState)
if userInputState == Enum.UserInputState.Begin then
if player.Character then
local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
if humanoid then
humanoid:UnequipTools()
end
end
end
end, false,Enum.KeyCode.U)
-- The variable (Keybind) is a boolean for whether the keybind is being held or not (HoldToInteract needs to be true)
end,
})
FarmingTab:AddButton({
Name = "Unequip weight [for mobile users]",
Callback = function()
game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass'Humanoid':UnequipTools()
end,
})
--Farming Tab End--
--Extras Tab
local ExtrasTab = Window:MakeTab({
Name = "Extras",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local ExtrasSection = ExtrasTab:AddSection({
Name = "Extras"
})
ExtrasTab:AddButton({
Name = "Protein BARS",
Callback = function()
while true do
task.wait()
--pcall(function()
--game:GetService('RunService').Stepped:connect(function()
game:GetService("ReplicatedStorage").Events.bar:InvokeServer()
end
end,
})
ExtrasTab:AddButton({
Name = "Auto-train pet",
Callback = function()
game:GetService('RunService').Stepped:connect(function()
pcall(function()
game:GetService("ReplicatedStorage").Events.train:InvokeServer()
end) end)
end,
})
ExtrasTab:AddButton({
Name = "Sky Baseplate",
Callback = function()
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2000, 22000, -1000)
baseplatee = Instance.new("Part", workspace)
baseplatee.Size = Vector3.new(1000, 1, 1000)
baseplatee.CFrame = game.workspace[game.Players.LocalPlayer.Name].HumanoidRootPart.CFrame + Vector3.new(0,-2, 0)
baseplatee.Anchored = true
end,
})
--Extras Tab End--
--"Admin Tab"--
local AdminScriptsTab = Window:MakeTab({
Name = " ”Admin scripts”",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local AdminScriptsSection = AdminScriptsTab:AddSection({
Name = "”Admin” <-- Pick & choose"
})
AdminScriptsTab:AddButton({
Name = "Load Fate's Admin",
Callback = function()
-- The function that takes place when the button is pressed
loadstring(game:HttpGet('https://raw.githubusercontent.com/ZeroedCode/Executors/main/Fate%20Admin.lua'))()
end,
})
AdminScriptsTab:AddButton({
Name = "Load IY FE",
Callback = function()
-- The function that takes place when the button is pressed
loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
end,
})
AdminScriptsTab:AddButton({
Name = "Load Reviz v2",
Callback = function()
-- The function that takes place when the button is pressed
loadstring(game:HttpGet('https://pastebin.com/raw/ZNSgtiwA'))()
end,
})
AdminScriptsTab:AddButton({
Name = "Load CMD-X",
Callback = function()
-- The function that takes place when the button is pressed
loadstring(game:HttpGet('https://raw.githubusercontent.com/CMD-X/CMD-X/master/Source'))()
end,
})
--"Admin" Tab End--
--Settings Tab--
local SettingsTab = Window:MakeTab({
Name = "Settings",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local SettingsSection = SettingsTab:AddSection({
Name = "Having trouble trying to read small numbers?"
})
SettingsTab:AddButton({
Name = "UrMom GUI",
Callback = function()
-- The function that takes place when the button is pressed
loadstring(game:HttpGet('https://raw.githubusercontent.com/ZeroedCode/Executors/main/UrMom.lua'))()
end,
})
local SettingsSection = SettingsTab:AddSection({
Name = "Settings"
})
SettingsSection:AddButton({
Name = "Destroy UI",
Callback = function()
OrionLib:Destroy()
end
})
SettingsTab:AddButton({
Name = "Rejoin",
Callback = function()
-- The function that takes place when the button is pressed
game:GetService("TeleportService"):Teleport(game.PlaceId)
end,
})
SettingsTab:AddButton({
Name = "Anti-AFK",
Callback = function()
-- The function that takes place when the button is pressed
loadstring(game:HttpGet('https://raw.githubusercontent.com/juywvm/-Roblox-Projects-/main/____Anti_Afk_Remastered_______'))()
end,
})
--Settings End--
--Info Tab--
local InfoTab = Window:MakeTab({
Name = "Info",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local InfoSection = InfoTab:AddSection({
Name = "Info"
})
InfoTab:AddLabel("UI project is in a work of progress.")
InfoTab:AddParagraph("Important:","• Elements in the remake project may soon to have evaluated changes, and/or may be removed/added.\n - Everything here is not final. ")
local InfoSection = InfoTab:AddSection({
Name = "Credits"
})
InfoTab:AddLabel("Made by 01_pink")
OrionLib:Init() --UI Lib End