forked from bloodball/UI-Librarys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
0x37's
53 lines (46 loc) · 1.2 KB
/
0x37's
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(game, "https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/0x"))()
local w1 = library:Window("a") -- Text
w1:Button(
"Print Hi",
function()
print("Hi")
end
) -- Text, Callback
w1:Slider(
"WalkSpeed",
"WS",
16,
300,
function(value)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = value
end
) -- Text, Flag, Minimum, Maximum, Callback, Default (Optional), Flag Location (Optional)
w1:Slider(
"JumpPower",
"JP",
50,
300,
function(value)
game.Players.LocalPlayer.Character.Humanoid.JumpPower = value
end,
100
) -- Text, Flag, Minimum, Maximum, Callback, Default (Optional), Flag Location (Optional)
w1:Toggle(
"Freeze",
"frz",
false,
function(toggled)
game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = toggled
end
) -- Text, Flag, Enabled, Callback, Flag Location (Optional)
w1:Button(
"Destroy GUI",
function()
for i, v in pairs(game.CoreGui:GetChildren()) do
if v:FindFirstChild("Top") then
v:Destroy()
end
end
end
) -- Text, Callback
w1:Label("0 x 3 7") -- Text