-
Notifications
You must be signed in to change notification settings - Fork 318
/
ShowerLib
35 lines (26 loc) · 1.41 KB
/
ShowerLib
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
--Made by : https://v3rmillion.net/member.php?action=profile&uid=1591342
local ShowerLib = loadstring(game:HttpGet("https://fluxteam.xyz/scripts/others/ShowerHeadLibrary.lua"))()
local Window = ShowerLib:CreateWindow("F"); --Clicking this will make it rotate.
local HomePage = Window:Section("Home")
HomePage:AddLabel("Added Labels!")
HomePage:ColorPicker("Baseplate Color", Color3.fromRGB(255,255,255), function(Color)
workspace.Baseplate.Color = Color
end)
HomePage:AddBox("Type Something!", function(Text)
print(Text) -- returns what the user typed
end)
HomePage:AddSlider("Walkspeed", 16, 500, 10, function(Value)
game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = Value -- Value is the value of the slider
end)
HomePage:AddToggle("GDK?", function(State)
print(State) -- State will return true if the toggle is enabled or return false if its disabled
end)
HomePage:AddButton("Destroy GUI", function()
ShowerLib:Destroy() -- Kills the GUI
end)
HomePage:AddBind("Close Keybind", Enum.KeyCode.F, function()
ShowerLib:OpenClose() -- opens or closes the UI
end)
HomePage:AddDrop("Favorite Food?", {"Dick", "Pussy", "Cow", "Pig", "Bacon"}, function(Selected)
print(Selected) -- prints what the user selected
end)