Advertisement
arwaawfwa

Untitled

Jan 9th, 2024 (edited)
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.30 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local mouse = player:GetMouse()
  3. local humanoidRemovalActive, originalHumanoid
  4.  
  5. local function createButton(text, positionY, clickFunction)
  6. local button = Instance.new("TextButton")
  7. button.Text, button.Size, button.Position = text, UDim2.new(0.9, 0, 0.1, 0), UDim2.new(0.05, 0, positionY, 0)
  8. button.BackgroundColor3, button.BorderColor3, button.TextColor3 = Color3.fromRGB(0, 0, 0), Color3.new(1, 0, 0), Color3.new(1, 1, 1)
  9. button.Parent, button.MouseButton1Click = player.PlayerGui.V00lKiddGuiFE, clickFunction
  10. return button
  11. end
  12.  
  13. local function createV00lKiddGuiFE()
  14. local gui = player.PlayerGui:FindFirstChild("V00lKiddGuiFE")
  15. if gui then gui:Destroy() end
  16.  
  17. gui = Instance.new("ScreenGui", player.PlayerGui)
  18. gui.Name = "V00lKiddGuiFE"
  19.  
  20. local frame = Instance.new("Frame", gui)
  21. 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)
  22.  
  23. local titleLabel = Instance.new("TextLabel", frame)
  24. 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)
  25.  
  26. createButton("Speed", 0.15, function()
  27. player.Character:FindFirstChildOfClass("Humanoid").WalkSpeed = 100
  28. end)
  29.  
  30. local removeHumanoidButton = createButton("Rem. Humanoid", 0.25, function()
  31. local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
  32. if humanoid then
  33. humanoid.Health, originalHumanoid, humanoidRemovalActive, removeHumanoidButton.Text = 1, humanoid:Clone(), true, "Restore Humanoid"
  34. humanoid:Destroy()
  35. end
  36. end)
  37.  
  38. createButton("Team Join", 0.35, function()
  39. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Team Join", "All")
  40. end)
  41.  
  42. createButton("Anti-Sit", 0.45, function()
  43. local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
  44. if humanoid then humanoid.Sit = false end
  45. end)
  46.  
  47. createButton("Teleport", 0.55, function()
  48. local character, humanoid = player.Character, player.Character:FindFirstChildOfClass("Humanoid")
  49. if humanoid then
  50. local backpack, teleportTool = player.Backpack, backpack and backpack:FindFirstChild("TeleportTool")
  51.  
  52. if not teleportTool then
  53. teleportTool = Instance.new("Tool", backpack)
  54. teleportTool.Name, teleportTool.RequiresHandle = "TeleportTool", true
  55.  
  56. local handle = Instance.new("Part", teleportTool)
  57. handle.Name, handle.Size, handle.TopSurface, handle.BottomSurface = "Handle", Vector3.new(1, 1, 1), Enum.SurfaceType.Smooth, Enum.SurfaceType.Smooth
  58. end
  59.  
  60. teleportTool.Activated:Connect(function()
  61. character:SetPrimaryPartCFrame(CFrame.new(mouse.Hit.p))
  62. end)
  63. end
  64. end)
  65.  
  66. createButton("Fling", 0.65, function()
  67. local targetPlayer = game.Players:GetPlayers():find(function(player)
  68. return player.Name:lower():sub(1, #targetPlayerTextBox.Text:lower()) == targetPlayerTextBox.Text:lower()
  69. end)
  70.  
  71. if targetPlayer and targetPlayer.Character then
  72. local Thrust = Instance.new('BodyThrust', targetPlayer.Character.HumanoidRootPart)
  73. Thrust.Force, Thrust.Name = Vector3.new(9999, 9999, 9999), "YeetForce"
  74.  
  75. repeat
  76. player.Character.HumanoidRootPart.CFrame, Thrust.Location = targetPlayer.Character.HumanoidRootPart.CFrame, targetPlayer.Character.HumanoidRootPart.Position
  77. game.RunService.Heartbeat:Wait()
  78. until not targetPlayer.Character:FindFirstChild("Head")
  79. else
  80. warn("No player found for Fling.")
  81. end
  82. end)
  83.  
  84. createButton("Restore", 0.75, function()
  85. if humanoidRemovalActive and originalHumanoid then
  86. originalHumanoid:Clone().Parent, humanoidRemovalActive, removeHumanoidButton.Text = player.Character, false, "Rem. Humanoid"
  87. end
  88. end)
  89. end
  90.  
  91. player.CharacterAdded:Connect(createV00lKiddGuiFE)
  92. createV00lKiddGuiFE()
  93.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement