-- Rayfield laden local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))() local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local UIS = game:GetService("UserInputService") -- Window local Window = Rayfield:CreateWindow({ Name = "🔥 Romanes Hub", LoadingTitle = "Romanes Hub", LoadingSubtitle = "by Roman", ConfigurationSaving = { Enabled = true, FolderName = "RomanesHub", FileName = "Settings" }, KeySystem = false }) -------------------------------------------------- -- MAIN TAB -------------------------------------------------- local MainTab = Window:CreateTab("🏠 Main", 4483362458) -- GELD GEBEN (SAFE) MainTab:CreateButton({ Name = "Geld geben (+1000)", Callback = function() local leaderstats = LocalPlayer:FindFirstChild("leaderstats") if not leaderstats then Rayfield:Notify({Title="Fehler", Content="leaderstats fehlt", Duration=3}) return end local cash = leaderstats:FindFirstChild("Cash") if not cash then Rayfield:Notify({Title="Fehler", Content="Cash fehlt", Duration=3}) return end cash.Value = cash.Value + 1000 Rayfield:Notify({ Title = "Romanes Hub", Content = "+1000 Cash 💸", Duration = 3 }) end }) -------------------------------------------------- -- UNENDLICH SPRINGEN -------------------------------------------------- local InfiniteJump = false MainTab:CreateToggle({ Name = "Unendlich springen", CurrentValue = false, Callback = function(Value) InfiniteJump = Value end }) UIS.JumpRequest:Connect(function() if InfiniteJump then local char = LocalPlayer.Character if char then local hum = char:FindFirstChild("Humanoid") if hum then hum:ChangeState(Enum.HumanoidStateType.Jumping) end end end end) -------------------------------------------------- -- PLAYER TAB -------------------------------------------------- local PlayerTab = Window:CreateTab("👤 Player", 4483362458) PlayerTab:CreateSlider({ Name = "WalkSpeed", Range = {16, 100}, Increment = 1, CurrentValue = 16, Callback = function(Value) local hum = LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") if hum then hum.WalkSpeed = Value end end }) PlayerTab:CreateSlider({ Name = "JumpPower", Range = {50, 200}, Increment = 5, CurrentValue = 50, Callback = function(Value) local hum = LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") if hum then hum.JumpPower = Value end end }) -------------------------------------------------- -- MISC TAB -------------------------------------------------- local MiscTab = Window:CreateTab("⚙️ Misc", 4483362458) MiscTab:CreateButton({ Name = "Charakter resetten", Callback = function() if LocalPlayer.Character then LocalPlayer.Character:BreakJoints() end end }) -------------------------------------------------- -- START NOTIFY -------------------------------------------------- Rayfield:Notify({ Title = "Romanes Hub", Content = "Unendlich Springen aktivierbar ✅", Duration = 5 })