Browse
Script Types
Tools
Community


🔨 Build and Battle!NO KEYit has speed, fly, jump, teleportation and thats it
This script loads code from an external source. Review the URL and understand what it does before running it in Roblox.
https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua
1local Fluent = loadstring(game:HttpGet("https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua"))()23local Window = Fluent:CreateWindow({4 Title = "Build & Battle Menu",5 SubTitle = "Simple Essentials",6 TabWidth = 160,7 Size = UDim2.fromOffset(580, 460),8 Acrylic = true,9 Theme = "Dark",10 MinimizeKey = Enum.KeyCode.LeftControl11})1213local Tabs = {14 Main = Window:AddTab({ Title = "Movement", Icon = "run" }),15 Teleport = Window:AddTab({ Title = "Teleport", Icon = "map-pin" })16}1718local LP = game:GetService("Players").LocalPlayer19local UIS = game:GetService("UserInputService")2021-- VARIABLES FOR FE FLY22local flying = false23local flySpeed = 5024local ctrl = {f = 0, b = 0, l = 0, r = 0}25local lastctrl = {f = 0, b = 0, l = 0, r = 0}2627-- 1. SPEED HACK28Tabs.Main:AddSlider("SpeedSlider", {29 Title = "WalkSpeed",30 Description = "Adjust your movement speed",31 Default = 16,32 Min = 16,33 Max = 150,34 Rounding = 0,35 Callback = function(Value)36 if LP.Character and LP.Character:FindFirstChildOfClass("Humanoid") then37 LP.Character:FindFirstChildOfClass("Humanoid").WalkSpeed = Value38 end39 end40})4142-- 2. JUMP POWER43Tabs.Main:AddSlider("JumpSlider", {44 Title = "JumpPower",45 Description = "Adjust your jump height",46 Default = 50,47 Min = 50,48 Max = 300,49 Rounding = 0,50 Callback = function(Value)51 if LP.Character and LP.Character:FindFirstChildOfClass("Humanoid") then52 local hum = LP.Character:FindFirstChildOfClass("Humanoid")53 hum.UseJumpPower = true54 hum.JumpPower = Value55 end56 end57})5859-- 3. FLY HACK60local function Fly()61 local torso = LP.Character:FindFirstChild("UpperTorso") or LP.Character:FindFirstChild("Torso")62 if not torso then return end63 64 local bg = Instance.new("BodyGyro", torso)65 bg.P = 9e466 bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)67 bg.cframe = torso.CFrame68 69 local bv = Instance.new("BodyVelocity", torso)70 bv.velocity = Vector3.new(0, 0.1, 0)71 bv.maxForce = Vector3.new(9e9, 9e9, 9e9)72 73 spawn(function()74 while flying and LP.Character and torso.Parent do75 task.wait()76 if ctrl.f + ctrl.b + ctrl.l + ctrl.r ~= 0 then77 bv.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f + ctrl.b)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l + ctrl.r, (ctrl.f + ctrl.b) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * flySpeed78 lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}79 elseif ctrl.f + ctrl.b + ctrl.l + ctrl.r == 0 and flySpeed ~= 0 then80 bv.velocity = Vector3.new(0, 0.1, 0)81 else82 bv.velocity = Vector3.new(0, 0.1, 0)83 end84 end85 bg:Destroy()86 bv:Destroy()87 end)88end8990UIS.InputBegan:Connect(function(input, gpe)91 if gpe then return end92 if input.KeyCode == Enum.KeyCode.W then ctrl.f = 193 elseif input.KeyCode == Enum.KeyCode.S then ctrl.b = -194 elseif input.KeyCode == Enum.KeyCode.A then ctrl.l = -195 elseif input.KeyCode == Enum.KeyCode.D then ctrl.r = 1 end96end)9798UIS.InputEnded:Connect(function(input)99 if input.KeyCode == Enum.KeyCode.W then ctrl.f = 0100 elseif input.KeyCode == Enum.KeyCode.S then ctrl.b = 0101 elseif input.KeyCode == Enum.KeyCode.A then ctrl.l = 0102 elseif input.KeyCode == Enum.KeyCode.D then ctrl.r = 0 end103end)104105Tabs.Main:AddToggle("FlyToggle", {106 Title = "Fly",107 Default = false,108 Callback = function(Value)109 flying = Value110 if flying then111 Fly()112 end113 end114})115116Tabs.Main:AddSlider("FlySpeedSlider", {117 Title = "Fly Speed",118 Default = 50,119 Min = 20,120 Max = 200,121 Rounding = 0,122 Callback = function(Value)123 flySpeed = Value124 end125})126127-- 4. TELEPORTATION (Click to Teleport)128local tpConnection129Tabs.Teleport:AddToggle("TPToggle", {130 Title = "Click TP (Hold Ctrl + Click)",131 Default = false,132 Callback = function(Value)133 if Value then134 tpConnection = UIS.InputBegan:Connect(function(input, gpe)135 if gpe then return end136 if input.UserInputType == Enum.UserInputType.MouseButton1 and UIS:IsKeyDown(Enum.KeyCode.LeftControl) then137 local mouse = LP:GetMouse()138 if LP.Character and LP.Character:FindFirstChild("HumanoidRootPart") and mouse.Target then139 LP.Character.HumanoidRootPart.CFrame = CFrame.new(mouse.Hit.p + Vector3.new(0, 3, 0))140 end141 end142 end)143 else144 if tpConnection then145 tpConnection:Disconnect()146 end147 end148 end149})150151Window:SelectTab(1)by PlayMore Studios · 1 script · 76 views
Comments
Loading comments…