-
Notifications
You must be signed in to change notification settings - Fork 319
/
Magik
62 lines (62 loc) · 1.23 KB
/
Magik
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
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/mag"))()
local Main = Library.Category("Main", "Main Code", Color3.fromRGB(0, 204, 204))
Main:Section("Player")
Main:Button(
"Sit",
function()
game.Players.LocalPlayer.Character.Humanoid.Sit = true
end
)
Main:Toggle(
"Noclip",
function(State)
if State == true then
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
else
game.Players.LocalPlayer.Character.Humanoid:ChangeState(18)
end
end
)
Main:Slider(
"Speed",
16,
200,
true,
function(numbers)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = numbers
end
)
Main:Box(
"print",
"text",
function(text)
print(text)
end
)
Main:Dropdown(
"Printer",
{"A", "B", "C"},
function(update)
print(update)
end
)
Main:ColorPick(
"Color",
function(color)
print(color)
end
)
Main:SearchBox(
"Items",
{"Axe", "Pickaxe", "Block", "Item"},
function(update)
print(update)
end
)
Main:Bind(
"Reset",
"R",
function()
game.Players.LocalPlayer.Character.Humanoid.Health = 0
end
)