-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShrand Hub.lua
59 lines (42 loc) · 2.2 KB
/
Shrand Hub.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
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
-- Lumber Tycoon --
function LumberTycoonScript()
local Window = Library.CreateLib("Shrand Hub - Lumber Tycoon", "DarkTheme")
local Main = Window:NewTab("Main")
local MainSection = Main:NewSection("Main")
MainSection:NewSlider("Walkspeed", "Changes how fast you walk.", 250, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
end)
MainSection:NewSlider("JumpPower", "Changes how fast you jump.", 250, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
end)
MainSection:NewButton("Admin Commands/Inf Yield", "Give you infinite yield script.", function()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
end)
MainSection:NewButton("Lumber Tycoon Axe Dupe", "Do things lol", function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/NOOBARMYSCRIPTER/NOOBARMYSCRIPTER/main/AXE%20LOOP%20SCRIPT", true))();
end)
end
-- Universal --
function UniversalScript()
local Window = Library.CreateLib("Shrand Hub - Universal", "DarkTheme")
local Main = Window:NewTab("Main")
local MainSection = Main:NewSection("Main")
MainSection:NewSlider("Walkspeed", "Changes how fast you walk.", 250, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
end)
MainSection:NewSlider("JumpPower", "Changes how fast you jump.", 250, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
end)
MainSection:NewButton("Admin Commands/Inf Yield", "Give you infinite yield script.", function()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
end)
end
local Universal = true
if game.PlaceId == 13822889 then
LumberTycoonScript()
Universal = false
end
if Universal == true then
UniversalScript()
end