-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgag.lua
More file actions
82 lines (74 loc) · 2.05 KB
/
gag.lua
File metadata and controls
82 lines (74 loc) · 2.05 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
--[[
Rizzler Script Hub
Made by: denny
Using Rayfield UI Library
--]]
--// Load Rayfield
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
--// Window
local Window = Rayfield:CreateWindow({
Name = "🌱 Rizzler Script Hub",
LoadingTitle = "Rizzler Script Hub",
LoadingSubtitle = "by denny",
ConfigurationSaving = {
Enabled = true,
FolderName = "RizzlerHub", -- Folder name for configs
FileName = "RizzlerConfig"
},
Discord = {
Enabled = false,
Invite = "", -- Add your Discord invite if you want
RememberJoins = true
},
KeySystem = false, -- Set to true if you want a key system
KeySettings = {
Title = "Rizzler Hub",
Subtitle = "Key System",
Note = "Get the key from our Discord server!",
FileName = "RizzlerKey",
SaveKey = true,
GrabKeyFromSite = false,
Key = {"examplekey123"}
}
})
--// Universal Page
local UniversalPage = Window:CreateTab("⚙️ Universal", 4483362458)
-- WalkSpeed Slider
UniversalPage:CreateSlider({
Name = "Walk Speed",
Range = {16, 200},
Increment = 1,
Suffix = "Speed",
CurrentValue = 16,
Flag = "WalkSpeed",
Callback = function(Value)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
end,
})
-- Jump Power Slider
UniversalPage:CreateSlider({
Name = "Jump Power",
Range = {50, 300},
Increment = 5,
Suffix = "Power",
CurrentValue = 50,
Flag = "JumpPower",
Callback = function(Value)
game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
end,
})
-- Gravity Slider
UniversalPage:CreateSlider({
Name = "Gravity",
Range = {0, 500},
Increment = 5,
Suffix = "Gravity",
CurrentValue = workspace.Gravity,
Flag = "Gravity",
Callback = function(Value)
workspace.Gravity = Value
end,
})
--// Garden Page (placeholder for later)
local GardenPage = Window:CreateTab("🌱 Garden", 4483362458)
GardenPage:CreateParagraph({Title = "Grow a Garden", Content = "Garden features will be added here!"})