Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local mouse = player:GetMouse()
- local humanoidRemovalActive, originalHumanoid
- local function createButton(text, positionY, clickFunction)
- local button = Instance.new("TextButton")
- button.Text, button.Size, button.Position = text, UDim2.new(0.9, 0, 0.1, 0), UDim2.new(0.05, 0, positionY, 0)
- button.BackgroundColor3, button.BorderColor3, button.TextColor3 = Color3.fromRGB(0, 0, 0), Color3.new(1, 0, 0), Color3.new(1, 1, 1)
- button.Parent, button.MouseButton1Click = player.PlayerGui.V00lKiddGuiFE, clickFunction
- return button
- end
- local function createV00lKiddGuiFE()
- local gui = player.PlayerGui:FindFirstChild("V00lKiddGuiFE")
- if gui then gui:Destroy() end
- gui = Instance.new("ScreenGui", player.PlayerGui)
- gui.Name = "V00lKiddGuiFE"
- local frame = Instance.new("Frame", gui)
- frame.Size, frame.Position, frame.BackgroundColor3, frame.BorderSizePixel, frame.BorderColor3 = UDim2.new(0, 150, 0, 250), UDim2.new(0, 10, 0, 10), Color3.fromRGB(0, 0, 0), 2, Color3.new(1, 0, 0)
- local titleLabel = Instance.new("TextLabel", frame)
- titleLabel.Text, titleLabel.Size, titleLabel.Position, titleLabel.BackgroundColor3, titleLabel.TextColor3 = "V00lKidd", UDim2.new(1, 0, 0.1, 0), UDim2.new(0, 0, 0, 0), Color3.fromRGB(60, 60, 60), Color3.new(1, 0, 0)
- createButton("Speed", 0.15, function()
- player.Character:FindFirstChildOfClass("Humanoid").WalkSpeed = 100
- end)
- local removeHumanoidButton = createButton("Rem. Humanoid", 0.25, function()
- local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
- if humanoid then
- humanoid.Health, originalHumanoid, humanoidRemovalActive, removeHumanoidButton.Text = 1, humanoid:Clone(), true, "Restore Humanoid"
- humanoid:Destroy()
- end
- end)
- createButton("Team Join", 0.35, function()
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Team Join", "All")
- end)
- createButton("Anti-Sit", 0.45, function()
- local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
- if humanoid then humanoid.Sit = false end
- end)
- createButton("Teleport", 0.55, function()
- local character, humanoid = player.Character, player.Character:FindFirstChildOfClass("Humanoid")
- if humanoid then
- local backpack, teleportTool = player.Backpack, backpack and backpack:FindFirstChild("TeleportTool")
- if not teleportTool then
- teleportTool = Instance.new("Tool", backpack)
- teleportTool.Name, teleportTool.RequiresHandle = "TeleportTool", true
- local handle = Instance.new("Part", teleportTool)
- handle.Name, handle.Size, handle.TopSurface, handle.BottomSurface = "Handle", Vector3.new(1, 1, 1), Enum.SurfaceType.Smooth, Enum.SurfaceType.Smooth
- end
- teleportTool.Activated:Connect(function()
- character:SetPrimaryPartCFrame(CFrame.new(mouse.Hit.p))
- end)
- end
- end)
- createButton("Fling", 0.65, function()
- local targetPlayer = game.Players:GetPlayers():find(function(player)
- return player.Name:lower():sub(1, #targetPlayerTextBox.Text:lower()) == targetPlayerTextBox.Text:lower()
- end)
- if targetPlayer and targetPlayer.Character then
- local Thrust = Instance.new('BodyThrust', targetPlayer.Character.HumanoidRootPart)
- Thrust.Force, Thrust.Name = Vector3.new(9999, 9999, 9999), "YeetForce"
- repeat
- player.Character.HumanoidRootPart.CFrame, Thrust.Location = targetPlayer.Character.HumanoidRootPart.CFrame, targetPlayer.Character.HumanoidRootPart.Position
- game.RunService.Heartbeat:Wait()
- until not targetPlayer.Character:FindFirstChild("Head")
- else
- warn("No player found for Fling.")
- end
- end)
- createButton("Restore", 0.75, function()
- if humanoidRemovalActive and originalHumanoid then
- originalHumanoid:Clone().Parent, humanoidRemovalActive, removeHumanoidButton.Text = player.Character, false, "Rem. Humanoid"
- end
- end)
- end
- player.CharacterAdded:Connect(createV00lKiddGuiFE)
- createV00lKiddGuiFE()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement