local RunService = game:GetService("RunService") local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Mc4121ban/Fluriore-UI/main/source.lua"))() local Window = Library:MakeGui({ NameHub = "[🔥] +1 Fire Per Click", Description = "by archivebladi", Color = Color3.fromRGB(255,0,255) }) local Tab = Window:CreateTab({ Name = "Main", Icon = "rbxassetid://16932740082" }) local Section = Tab:AddSection("Main Features") local Running = false Section:AddToggle({ Title = "Autoclick", Content = "Enable or disable", Default = false, Callback = function(state) Running = state if Running then task.spawn(function() local ReplicatedStorage = game:GetService("ReplicatedStorage") local Event = ReplicatedStorage.FireEvents.AddPower while Running do Event:FireServer() task.wait(0.0000000000000000000000000000000000000000000000000001) end end) end end }) local Running Section:AddToggle({ Title = "AutoRebirth", Content = "Enable or disable", Default = false, Callback = function(state) Running = state if Running then task.spawn(function() local ReplicatedStorage = game:GetService("ReplicatedStorage") local Event = ReplicatedStorage.FireEvents.DoRebirth while Running do Event:FireServer() task.wait(0.0000000000000000000000000000000000000000000000000001) end end) end end }) local Running = false local CFrameRunning = false Section:AddToggle({ Title = "Auto Win", Content = "Enable or disable", Default = false, Callback = function(state) CFrameRunning = state if CFrameRunning then task.spawn(function() while CFrameRunning do game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new( 7.73985863, 0.0223433971, 2504.81812 ) task.wait(3) end end) end end }) Section:AddSlider({ Title = "WalkSpeed", Content = "Adjust your speed", Min = 10, Max = 50, Default = 16, Callback = function(value) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = value end })