local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local LocalPlayer = game:GetService("Players").LocalPlayer local PlayerGui = LocalPlayer:WaitForChild("PlayerGui") local Window = Rayfield:CreateWindow({ Name = "Rpidkidds hub", LoadingTitle = "Injecting...", LoadingSubtitle = "by Rpidkidd", ConfigurationSaving = { Enabled = true, FolderName = "Rpidkidd", FileName = "RpidConfig" }, Discord = { Enabled = false, Invite = "noinvitelink", RememberJoins = true }, KeySystem = false }) -- Main Tab local MainTab = Window:CreateTab("Main", 4483362458) local MainSection = MainTab:CreateSection("Info") MainTab:CreateLabel("Welcome to Rpidgui") MainTab:CreateParagraph({Title = "About", Content = "Wazzzzzzzzza."}) local UtilsSection = MainTab:CreateSection("Utilities") local NotifyButton = MainTab:CreateButton({ Name = "Send Notification", Callback = function() Rayfield:Notify({ Title = "Rpid Notification", Content = "Hello from Rpidkidd!", Duration = 5, Image = 4483362458 }) end, }) MainTab:CreateButton({ Name = "Rejoin Server", Callback = function() game:GetService("TeleportService"):Teleport(game.PlaceId, LocalPlayer) end, }) MainTab:CreateButton({ Name = "Copy Discord Invite", Callback = function() setclipboard("https://discord.gg/ZvSEQRY7") Rayfield:Notify({Title = "Copied!", Content = "Discord invite copied to clipboard!", Duration = 3}) end, }) MainTab:CreateButton({ Name = "Destroy UI", Callback = function() Rayfield:Destroy() end, }) -- Player Tab local PlayerTab = Window:CreateTab("Player", 4483362458) local PlayerSection = PlayerTab:CreateSection("Player Mods") local WalkspeedSlider = PlayerTab:CreateSlider({ Name = "Walk Speed", Range = {16, 200}, Increment = 1, Suffix = "Speed", CurrentValue = 16, Flag = "Walkspeed", Callback = function(Value) if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.WalkSpeed = Value end end, }) local JumpSlider = PlayerTab:CreateSlider({ Name = "Jump Power", Range = {50, 200}, Increment = 1, Suffix = "Power", CurrentValue = 50, Flag = "JumpPower", Callback = function(Value) if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.JumpPower = Value end end, }) local InfJumpToggle = PlayerTab:CreateToggle({ Name = "Infinite Jump", CurrentValue = false, Flag = "InfJump", Callback = function(Value) _G.InfJump = Value if Value then LocalPlayer:GetService("UserInputService").JumpRequest:Connect(function() if _G.InfJump then LocalPlayer.Character.Humanoid:ChangeState("Jumping") end end) end end, }) PlayerTab:CreateToggle({ Name = "Click to Walk", CurrentValue = false, Flag = "ClickWalk", Callback = function(Value) -- Dummy for demo print("Click to Walk:", Value) end, }) local HipHeightSlider = PlayerTab:CreateSlider({ Name = "Hip Height", Range = {0, 20}, Increment = 0.1, Suffix = "Units", CurrentValue = 0, Flag = "HipHeight", Callback = function(Value) if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.HipHeight = Value end end, }) local AppearanceSection = PlayerTab:CreateSection("Appearance") PlayerTab:CreateInput({ Name = "Player Name Changer", CurrentValue = "", PlaceholderText = "New Name", RemoveTextAfterFocusLost = false, Flag = "PlayerName", Callback = function(Text) LocalPlayer.NameDisplayDistance = 100 LocalPlayer.DisplayName = Text end, }) local ESPColorPicker = PlayerTab:CreateColorPicker({ Name = "ESP Color", Color = Color3.fromRGB(255, 0, 0), Flag = "ESPColor", Callback = function(Color) _G.ESPColor = Color print("ESP Color changed to:", Color) end, }) -- Movement Tab local MovementTab = Window:CreateTab("Movement") local FlySection = MovementTab:CreateSection("Fly") local FlyToggle = MovementTab:CreateToggle({ Name = "Fly (Noclip Style)", CurrentValue = false, Flag = "Fly", Callback = function(Value) _G.FlyEnabled = Value if Value then -- Simple fly bodyvelocity dummy local char = LocalPlayer.Character if char then local bv = Instance.new("BodyVelocity") bv.MaxForce = Vector3.new(4000,4000,4000) bv.Velocity = Vector3.new(0,0,0) bv.Parent = char.HumanoidRootPart spawn(function() while _G.FlyEnabled do wait() if bv.Parent then bv.Velocity = workspace.CurrentCamera.CFrame.LookVector * 50 end end end) end else if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then LocalPlayer.Character.HumanoidRootPart:FindFirstChild("BodyVelocity"):Destroy() end end end, }) local FlyKeybind = MovementTab:CreateKeybind({ Name = "Fly Keybind", CurrentKeybind = "F", HoldToInteract = false, Flag = "FlyKey", Callback = function(Keybind) FlyToggle:Set(not _G.FlyEnabled) end, }) MovementTab:CreateDropdown({ Name = "Fly Mode", Options = {"Noclip", "CFrame", "BodyVelocity"}, CurrentOption = "BodyVelocity", Flag = "FlyMode", Callback = function(Option) print("Fly Mode:", Option[1]) end, }) local SpeedSection = MovementTab:CreateSection("Speed") MovementTab:CreateToggle({ Name = "Full Speed", CurrentValue = false, Flag = "FullSpeed", Callback = function(Value) if Value then WalkspeedSlider:Set(200) JumpSlider:Set(200) else WalkspeedSlider:Set(16) JumpSlider:Set(50) end end, }) -- Visuals Tab local VisualsTab = Window:CreateTab("Visuals") local ESPSection = VisualsTab:CreateSection("ESP") local ESPToggle = VisualsTab:CreateToggle({ Name = "Player ESP", CurrentValue = false, Flag = "ESP", Callback = function(Value) _G.ESP = Value print("ESP toggled:", Value) -- Dummy ESP logic end, }) VisualsTab:CreateColorPicker({ Name = "ESP Team Color", Color = Color3.fromRGB(0, 255, 0), Flag = "ESPTColor", Callback = function(Color) print("Team ESP Color:", Color) end, }) local FullbrightToggle = VisualsTab:CreateToggle({ Name = "Fullbright", CurrentValue = false, Flag = "Fullbright", Callback = function(Value) if Value then game.Lighting.Brightness = 2 game.Lighting.ClockTime = 14 game.Lighting.FogEnd = 9e9 game.Lighting.GlobalShadows = false game.Lighting.OutdoorAmbient = Color3.fromRGB(128, 128, 128) else game.Lighting.Brightness = 1 game.Lighting.ClockTime = 12 game.Lighting.FogEnd = 100000 game.Lighting.GlobalShadows = true game.Lighting.OutdoorAmbient = Color3.fromRGB(50, 50, 50) end end, }) VisualsTab:CreateToggle({ Name = "Remove Water", CurrentValue = false, Flag = "NoWater", Callback = function(Value) for _, v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") and v.Name == "Water" then v.Transparency = Value and 1 or 0.3 end end end, }) -- Misc Tab local MiscTab = Window:CreateTab("Misc", 4483362458) local TeleportSection = MiscTab:CreateSection("Teleports") local XInput = MiscTab:CreateInput({ Name = "X Coordinate", CurrentValue = "0", PlaceholderText = "X", RemoveTextAfterFocusLost = false, Flag = "TPX", Callback = function(Text) end, }) local YInput = MiscTab:CreateInput({ Name = "Y Coordinate", CurrentValue = "0", PlaceholderText = "Y", RemoveTextAfterFocusLost = false, Flag = "TPY", Callback = function(Text) end, }) local ZInput = MiscTab:CreateInput({ Name = "Z Coordinate", CurrentValue = "0", PlaceholderText = "Z", RemoveTextAfterFocusLost = false, Flag = "TPZ", Callback = function(Text) end, }) MiscTab:CreateButton({ Name = "Teleport", Callback = function() local x = tonumber(XInput:FindFirstChild("CurrentValue").Value) or 0 local y = tonumber(YInput:FindFirstChild("CurrentValue").Value) or 0 local z = tonumber(ZInput:FindFirstChild("CurrentValue").Value) or 0 if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(x, y, z) end end, }) MiscTab:CreateDivider() MiscTab:CreateDropdown({ Name = "Server Crash Mode", Options = {"Lag", "Kick All", "Fling"}, CurrentOption = {"Lag"}, MultipleOptions = false, Flag = "CrashMode", Callback = function(Option) print("Selected crash mode:", Option[1]) end, }) local CrashKeybind = MiscTab:CreateKeybind({ Name = "Crash Key", CurrentKeybind = "C", Callback = function(Key) print("Crash activated with key:", Key.Name) end, }) MiscTab:CreateToggle({ Name = "Anti-AFK", CurrentValue = false, Flag = "AntiAFK", Callback = function(Value) _G.AntiAFK = Value spawn(function() while _G.AntiAFK do wait(60) game:GetService("VirtualUser"):CaptureController() game:GetService("VirtualUser"):ClickButton2(Vector2.new()) end end) end, }) -- Load configuration Rayfield:LoadConfiguration() Rayfield:Notify({ Title = "Rpidkidd gui loaded", Content = "Enjoy :D", Duration = 4.5, Image = 4483362458 })