-- Carregar Rayfield local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Super Manager Script", LoadingTitle = "Carregando...", LoadingSubtitle = "by ChatGPT", ConfigurationSaving = { Enabled = false } }) local Tab = Window:CreateTab("Main", 4483362458) -- SPEED Tab:CreateSlider({ Name = "Velocidade", Range = {16, 200}, Increment = 1, Suffix = "Speed", CurrentValue = 50, Callback = function(Value) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value end, }) -- PULO Tab:CreateSlider({ Name = "Pulo", Range = {50, 200}, Increment = 5, Suffix = "Jump", CurrentValue = 70, Callback = function(Value) game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value end, }) -- PERSONAGEM AMARELO Tab:CreateButton({ Name = "Ficar Amarelo", Callback = function() local char = game.Players.LocalPlayer.Character for i,v in pairs(char:GetDescendants()) do if v:IsA("BasePart") then v.Color = Color3.fromRGB(255, 255, 0) end end end, }) -- CRIAR MOLA DE PULO Tab:CreateButton({ Name = "Ganhar Mola de Pulo", Callback = function() local tool = Instance.new("Tool") tool.Name = "Mola de Pulo" tool.Activated:Connect(function() local hum = game.Players.LocalPlayer.Character.Humanoid hum.JumpPower = 150 end) tool.Parent = game.Players.LocalPlayer.Backpack end, }) -- CRIAR MOLA DE SPEED Tab:CreateButton({ Name = "Ganhar Mola de Speed", Callback = function() local tool = Instance.new("Tool") tool.Name = "Mola de Speed" tool.Activated:Connect(function() local hum = game.Plers.LocalPlayer.Character.Humanoid hum.WalkSpeed = 120 end) tool.Parent = game.Players.LocalPlayer.Backpack end, }) Rayfield:LoadConfiguration()