local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Script private", Icon = 0, LoadingTitle = "Rayfield Interface Suite", LoadingSubtitle = "by YK WHO", ShowText = "Rayfield", Theme = "Default", ToggleUIKeybind = "K", DisableRayfieldPrompts = false, DisableBuildWarnings = false, ConfigurationSaving = { Enabled = true, FolderName = nil, FileName = "Big Hub" }, }) local mainTab = Window:CreateTab("Tab Example", 4483362458) function aimbot() local Aimbot = loadstring(game:HttpGet("https://raw.githubusercontent.com/Exunys/Aimbot-V3/main/src/Aimbot.lua"))() Aimbot.Load() end local Button = mainTab:CreateButton({ Name = "aim bot", Callback = function() aimbot() end }) local Slider = mainTab:CreateSlider({ Name = "jump power", Range = {0,10, 15,25, 100}, Increment = 10, Suffix = "jump", CurrentValue = 16, Flag = "Slider1", Callback = function(Value) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value end }) local Slider = mainTab:CreateSlider({ Name = "jump power", Range = {0,10, 15,25, 100}, Increment = 10, Suffix = "jump", CurrentValue = 16, Flag = "Slider1", Callback = function(Value) game.Players.LocalPlayer.Character.Humanoid.jumppower = Value end })