-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharbyz hub.lua
More file actions
67 lines (55 loc) · 2.2 KB
/
arbyz hub.lua
File metadata and controls
67 lines (55 loc) · 2.2 KB
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
-- Ссылка на Библиотеку
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Robojini/Tuturial_UI_Library/main/UI_Template_1"))()
--[[
В данный момент стоит тема "RJTheme3" ,
вы можете использовать другую тему приведённую ниже -
"RJTheme1"
"RJTheme2"
"RJTheme3"ц
"RJTheme4"
"RJTheme5"
"RJTheme6"
"RJTheme7"
"RJTheme8"
//////////////////////////////////////////////////////////////////
Что бы сделать свою тему , уберите часть скрипта из "комминтариев" ,
который находится чуть ниже , и вместо "RJTheme3" в переменной "Windows" -
напишите переменную которая используется в скрипте чуть ниже .
]]
--[[
local colors = {
-- Цвет фона у Секций
SchemeColor = Color3.fromRGB(150, 72, 148),
-- Цвет фона в правой части UI
Background = Color3.fromRGB(15,15,15),
-- Цвет фона в левой части UI
Header = Color3.fromRGB(15,15,15),
-- Цвет текста
TextColor = Color3.fromRGB(255,255,255),
-- Цвет фона у кнопок
ElementColor = Color3.fromRGB(20, 20, 20)
}
]]
-- Создать окно UI
local Window = Library.CreateLib("Arbyz karapyz Hub", "RJTheme3")
-- Секция
local Tab = Window:NewTab("Player")
local Tab2 = Window:NewTab("Teleport")
-- Подсекция
local Section = Tab:NewSection("xd")
local Section2 = Tab2:NewSection("xd2")
Section:NewLabel("Player")
Section:NewButton("WalkSpeed", "ButtonInfo", function()
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
end)
Section:NewButton("JumpPower", "ButtonInfo", function()
game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100
end)
Section:NewButton("Headless", "ButtonInfo", function()
game.Players.LocalPlayer.Character.Head.Transparency = 1
game.Players.LocalPlayer.Character.Head.face:Remove ()
end)
Section:NewButton("AntiRagdoll", "ButtonInfo", function()
game.Players.LocalPlayer.Character.Pushed:Remove ()
game.Players.LocalPlayer.Character.RagdollMe:Remove ()
end)