Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextButton = Instance.new("TextButton")
- local TextLabel = Instance.new("TextLabel")
- local TextButton_2 = Instance.new("TextButton")
- local WalkSpeedControl = Instance.new("TextLabel")
- local Close = Instance.new("TextButton")
- local Label = Instance.new("TextLabel")
- local Open = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- Frame.BorderColor3 = Color3.fromRGB(27, 42, 53)
- Frame.BorderSizePixel = 3
- Frame.Position = UDim2.new(0.382299274, 0, 0.270377755, 0)
- Frame.Size = UDim2.new(0, 257, 0, 231)
- Frame.Active = true
- Frame.Draggable = true
- TextButton.Parent = Frame
- TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
- TextButton.BorderSizePixel = 3
- TextButton.Position = UDim2.new(0.71206224, 0, 0.63203454, 0)
- TextButton.Size = UDim2.new(0, 74, 0, 73)
- TextButton.Font = Enum.Font.SourceSans
- TextButton.Text = "+"
- TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton.TextScaled = true
- TextButton.TextSize = 14.000
- TextButton.TextWrapped = true
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.BackgroundTransparency = 1.000
- TextLabel.Position = UDim2.new(0.33073929, 0, 0.29437235, 0)
- TextLabel.Size = UDim2.new(0, 87, 0, 70)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "16"
- TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14.000
- TextLabel.TextWrapped = true
- TextButton_2.Parent = Frame
- TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- TextButton_2.BorderSizePixel = 3
- TextButton_2.Position = UDim2.new(0, 0, 0.63203454, 0)
- TextButton_2.Size = UDim2.new(0, 74, 0, 73)
- TextButton_2.Font = Enum.Font.SourceSans
- TextButton_2.Text = "-"
- TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton_2.TextScaled = true
- TextButton_2.TextSize = 14.000
- TextButton_2.TextWrapped = true
- WalkSpeedControl.Name = "WalkSpeed Control"
- WalkSpeedControl.Parent = Frame
- WalkSpeedControl.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- WalkSpeedControl.BorderSizePixel = 3
- WalkSpeedControl.Position = UDim2.new(0.000976324081, 0, -0.00234955549, 0)
- WalkSpeedControl.Size = UDim2.new(0, 257, 0, 59)
- WalkSpeedControl.Font = Enum.Font.Highway
- WalkSpeedControl.Text = "Walkspeed Control"
- WalkSpeedControl.TextColor3 = Color3.fromRGB(0, 0, 0)
- WalkSpeedControl.TextScaled = true
- WalkSpeedControl.TextSize = 14.000
- WalkSpeedControl.TextWrapped = true
- Close.Name = "Close"
- Close.Parent = Frame
- Close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Close.Position = UDim2.new(1, 0, -0.0259740278, 0)
- Close.Size = UDim2.new(0, 63, 0, 69)
- Close.Style = Enum.ButtonStyle.RobloxButtonDefault
- Close.Font = Enum.Font.SourceSans
- Close.Text = "X"
- Close.TextColor3 = Color3.fromRGB(255, 0, 0)
- Close.TextScaled = true
- Close.TextSize = 14.000
- Close.TextWrapped = true
- Label.Name = "Label"
- Label.Parent = Frame
- Label.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- Label.BorderColor3 = Color3.fromRGB(27, 42, 53)
- Label.BorderSizePixel = 3
- Label.Position = UDim2.new(0, 0, 0.99999994, 0)
- Label.Size = UDim2.new(0, 257, 0, 50)
- Label.Font = Enum.Font.Highway
- Label.Text = "Made by Roblox Scripter"
- Label.TextColor3 = Color3.fromRGB(0, 0, 0)
- Label.TextScaled = true
- Label.TextSize = 14.000
- Label.TextWrapped = true
- Open.Name = "Open"
- Open.Parent = ScreenGui
- Open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Open.Position = UDim2.new(-0.00074955821, 0, 0.520874739, 0)
- Open.Size = UDim2.new(0, 200, 0, 50)
- Open.Style = Enum.ButtonStyle.RobloxButton
- Open.Font = Enum.Font.SourceSans
- Open.Text = "Open"
- Open.TextColor3 = Color3.fromRGB(255, 255, 255)
- Open.TextScaled = true
- Open.TextSize = 14.000
- Open.TextWrapped = true
- -- Scripts:
- local function QDTZQ_fake_script() -- TextButton.LocalScript
- local script = Instance.new('LocalScript', TextButton)
- local label = script.Parent.Parent.TextLabel --- defines the number
- script.Parent.MouseButton1Click:Connect(function() --- when the button is clicked it calls this function
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = game.Players.LocalPlayer.Character.Humanoid.WalkSpeed +5--- defines the player and addition to walk speed
- label.Text = game.Players.LocalPlayer.Character.Humanoid.WalkSpeed --- tells the text label that displays walk speed to update
- end)
- end
- coroutine.wrap(QDTZQ_fake_script)()
- local function UCADA_fake_script() -- TextButton_2.LocalScript
- local script = Instance.new('LocalScript', TextButton_2)
- local label = script.Parent.Parent.TextLabel --- defines the number
- script.Parent.MouseButton1Click:Connect(function() --- when the button is clicked it calls this function
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = game.Players.LocalPlayer.Character.Humanoid.WalkSpeed -5--- defines the player and addition to walk speed
- label.Text = game.Players.LocalPlayer.Character.Humanoid.WalkSpeed --- tells the text label that displays walk speed to update
- end)
- end
- coroutine.wrap(UCADA_fake_script)()
- local function YDSA_fake_script() -- Close.LocalScript
- local script = Instance.new('LocalScript', Close)
- script.Parent.Parent.Visible = false
- script.Parent.MouseButton1Click:Connect(function()
- script.Parent.Parent.Visible = false
- script.Parent.Parent.Parent.Open.Visible = true
- end)
- end
- coroutine.wrap(YDSA_fake_script)()
- local function ZFFOR_fake_script() -- Open.LocalScript
- local script = Instance.new('LocalScript', Open)
- script.Parent.Visible = true
- script.Parent.MouseButton1Click:Connect(function()
- script.Parent.Visible = false
- script.Parent.Parent.Frame.Visible = true
- end)
- end
- coroutine.wrap(ZFFOR_fake_script)()
Comments
-
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("FD HUB", "Midnight")
- local Tab = Window:NewTab("Player")
- local Section = Tab:NewSection("GO TO WIN")
- Section:NewToggle("Auto win", "", function(t)
- _G.TPPlayer = t
- while _G.TPPlayer do wait()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1, -40.8669701, 0.5, 0.499959469, -0, -0.866048813, 0, 1, -0, 0.866048813, 0, 0.499959469)
- end
- end)
- Section:NewSlider("speed", "SliderInfo", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
- end)
- local Tab = Window:NewTab("TP player")
- local Section = Tab:NewSection("GO TO PLAYER")
- Plr = {}
- for i,v in pairs(game:GetService("Players"):GetChildren()) do
- table.insert(Plr,v.Name)
- end
- local drop = Section:NewDropdown("go to player", "Click To Select", Plr, function(t)
- PlayerTP = t
- end)
- Section:NewButton("Click To TP", "", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[PlayerTP].Character.HumanoidRootPart.CFrame
- end)
- Section:NewToggle("Auto Tp", "", function(t)
- _G.TPPlayer = t
- while _G.TPPlayer do wait()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[PlayerTP].Character.HumanoidRootPart.CFrame
- end
- end)
- Section:NewButton("Refresh Dropdown","Refresh Dropdown", function()
- drop:Refresh(Plr)
- end)
-
Comment was deleted
-
- _G.Key = ""
- loadstring(game:HttpGet("https://testfdhub.000webhostapp.com/FD%20HUB%20GOD"))()
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("FD HUB", "Midnight")
- local Tab = Window:NewTab("Player")
- local Section = Tab:NewSection("GO TO WIN")
- Section:NewToggle("Auto win", "", function(t)
- _G.TPPlayer = t
- while _G.TPPlayer do wait()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-12,300,22)
- end
- end)
- local Section = Tab:NewSection("auto win")
- Section:NewSlider("speed", "SliderInfo", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
- end)
- Section:NewButton("inf jump", "ButtonInfo", function()
- local InfiniteJumpEnabled = true game:GetService("UserInputService").JumpRequest:connect(function() if InfiniteJumpEnabled then game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping") end end)
- end)
- Section:NewButton("ESP", "ButtonInfo", function()
- local FillColor = Color3.fromRGB(175,25,255)
- local DepthMode = "AlwaysOnTop"
- local FillTransparency = 0.5
- local OutlineColor = Color3.fromRGB(255,255,255)
- local OutlineTransparency = 0
- local CoreGui = game:FindService("CoreGui")
- local Players = game:FindService("Players")
- local lp = Players.LocalPlayer
- local connections = {}
- local Storage = Instance.new("Folder")
- Storage.Parent = CoreGui
- Storage.Name = "Highlight_Storage"
- local function Highlight(plr)
- local Highlight = Instance.new("Highlight")
- Highlight.Name = plr.Name
- Highlight.FillColor = FillColor
- Highlight.DepthMode = DepthMode
- Highlight.FillTransparency = FillTransparency
- Highlight.OutlineColor = OutlineColor
- Highlight.OutlineTransparency = 0
- Highlight.Parent = Storage
- local plrchar = plr.Character
- if plrchar then
- Highlight.Adornee = plrchar
- end
- connections[plr] = plr.CharacterAdded:Connect(function(char)
- Highlight.Adornee = char
- end)
- end
- Players.PlayerAdded:Connect(Highlight)
- for i,v in next, Players:GetPlayers() do
- Highlight(v)
- end
- Players.PlayerRemoving:Connect(function(plr)
- local plrname = plr.Name
- if Storage[plrname] then
- Storage[plrname]:Destroy()
- end
- if connections[plr] then
- connections[plr]:Disconnect()
- end
- end)
- end)
- Section:NewButton("noclip", "ButtonInfo", function()
- local Noclip = nil
- local Clip = nil
- function noclip()
- Clip = false
- local function Nocl()
- if Clip == false and game.Players.LocalPlayer.Character ~= nil then
- for _,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
- if v:IsA('BasePart') and v.CanCollide and v.Name ~= floatName then
- v.CanCollide = false
- end
- end
- end
- wait(0.21) -- basic optimization
- end
- Noclip = game:GetService('RunService').Stepped:Connect(Nocl)
- end
- function clip()
- if Noclip then Noclip:Disconnect() end
- Clip = true
- end
- noclip() -- to toggle noclip() and clip()
- end)
- Section:NewButton("TP To Game", "ButtonInfo", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,7,0)
- end)
- local Tab = Window:NewTab("TP Players")
- local Section = Tab:NewSection("Select Player plssss")
- Plr = {}
- for i,v in pairs(game:GetService("Players"):GetChildren()) do
- table.insert(Plr,v.Name)
- end
- local drop = Section:NewDropdown("Select Player!", "Click To Select", Plr, function(t)
- PlayerTP = t
- end)
- Section:NewButton("Click To TP", "", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[PlayerTP].Character.HumanoidRootPart.CFrame
- end)
- Section:NewToggle("Auto Tp", "", function(t)
- _G.TPPlayer = t
- while _G.TPPlayer do wait()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[PlayerTP].Character.HumanoidRootPart.CFrame
- end
- end)
- Section:NewButton("Refresh Dropdown","Refresh Dropdown", function()
- drop:Refresh(Plr)
- end)
-
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("FD HUB", "Midnight")
- local Tab = Window:NewTab("Player")
- local Section = Tab:NewSection("GO TO WIN")
- Section:NewToggle("Auto win", "", function(t)
- _G.TPPlayer = t
- while _G.TPPlayer do wait()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-12,300,22)
- end
- end)
- local Section = Tab:NewSection("auto win")
- Section:NewSlider("speed", "SliderInfo", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
- end)
- Section:NewButton("inf jump", "ButtonInfo", function()
- local InfiniteJumpEnabled = true game:GetService("UserInputService").JumpRequest:connect(function() if InfiniteJumpEnabled then game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping") end end)
- end)
- Section:NewButton("ESP", "ButtonInfo", function()
- local FillColor = Color3.fromRGB(175,25,255)
- local DepthMode = "AlwaysOnTop"
- local FillTransparency = 0.5
- local OutlineColor = Color3.fromRGB(255,255,255)
- local OutlineTransparency = 0
- local CoreGui = game:FindService("CoreGui")
- local Players = game:FindService("Players")
- local lp = Players.LocalPlayer
- local connections = {}
- local Storage = Instance.new("Folder")
- Storage.Parent = CoreGui
- Storage.Name = "Highlight_Storage"
- local function Highlight(plr)
- local Highlight = Instance.new("Highlight")
- Highlight.Name = plr.Name
- Highlight.FillColor = FillColor
- Highlight.DepthMode = DepthMode
- Highlight.FillTransparency = FillTransparency
- Highlight.OutlineColor = OutlineColor
- Highlight.OutlineTransparency = 0
- Highlight.Parent = Storage
- local plrchar = plr.Character
- if plrchar then
- Highlight.Adornee = plrchar
- end
- connections[plr] = plr.CharacterAdded:Connect(function(char)
- Highlight.Adornee = char
- end)
- end
- Players.PlayerAdded:Connect(Highlight)
- for i,v in next, Players:GetPlayers() do
- Highlight(v)
- end
- Players.PlayerRemoving:Connect(function(plr)
- local plrname = plr.Name
- if Storage[plrname] then
- Storage[plrname]:Destroy()
- end
- if connections[plr] then
- connections[plr]:Disconnect()
- end
- end)
- end)
- Section:NewButton("noclip", "ButtonInfo", function()
- local Noclip = nil
- local Clip = nil
- function noclip()
- Clip = false
- local function Nocl()
- if Clip == false and game.Players.LocalPlayer.Character ~= nil then
- for _,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
- if v:IsA('BasePart') and v.CanCollide and v.Name ~= floatName then
- v.CanCollide = false
- end
- end
- end
- wait(0.21) -- basic optimization
- end
- Noclip = game:GetService('RunService').Stepped:Connect(Nocl)
- end
- function clip()
- if Noclip then Noclip:Disconnect() end
- Clip = true
- end
- noclip() -- to toggle noclip() and clip()
- end)
- Section:NewButton("TP To Game", "ButtonInfo", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,7,0)
- end)
- local Tab = Window:NewTab("TP Players")
- local Section = Tab:NewSection("Select Player plssss")
- Plr = {}
- for i,v in pairs(game:GetService("Players"):GetChildren()) do
- table.insert(Plr,v.Name)
- end
- local drop = Section:NewDropdown("Select Player!", "Click To Select", Plr, function(t)
- PlayerTP = t
- end)
- Section:NewButton("Click To TP", "", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[PlayerTP].Character.HumanoidRootPart.CFrame
- end)
- Section:NewToggle("Auto Tp", "", function(t)
- _G.TPPlayer = t
- while _G.TPPlayer do wait()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[PlayerTP].Character.HumanoidRootPart.CFrame
- end
- end)
- Section:NewButton("Refresh Dropdown","Refresh Dropdown", function()
- drop:Refresh(Plr)
- end)
-
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-174, 4860.71387, -57774.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
-
- local args = {
- [1] = {
- ["shopItem"] = {
- ["currency"] = "iron",
- ["itemType"] = "wool_white",
- ["amount"] = 16,
- ["price"] = 0,
- ["category"] = "Blocks"
- },
- ["shopId"] = "2_item_shop_1"
- }
- }
- game:GetService("ReplicatedStorage").rbxts_include.node_modules:FindFirstChild("@rbxts").net.out._NetManaged.BedwarsPurchaseItem:InvokeServer(unpack(args))
-
- local args = {
- [1] = "Train",
- [2] = workspace.Training.Grassy.Hole
- }
- game:GetService("ReplicatedStorage").Remotes.Train:FireServer(unpack(args))
-
- local function BQXJ_fake_script() -- TextLabel_3.LocalScript
- local script = Instance.new('LocalScript', TextLabel_3)
- local args = {
- [1] = " Im Gay Real Not Fake i love Boy👦❤",
- [2] = "All"
- }
- game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("SayMessageRequest"):FireServer(unpack(args))
- end
- coroutine.wrap(BQXJ_fake_script)()
-
- New script comming
-
- Troll Players
-
- but secret
-
- local function BQXJ_fake_script() -- TextLabel_3.LocalScript
- local script = Instance.new('LocalScript', TextLabel_3)
- local args = {
- [1] = "👦❤👦❤👦❤👦❤👦❤👦❤👦❤",
- [2] = "All"
- }
- game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("SayMessageRequest"):FireServer(unpack(args))
- end
- coroutine.wrap(BQXJ_fake_script)()
Add Comment
Please, Sign In to add comment