Advertisement
13ooeo

Untitled

Nov 15th, 2022 (edited)
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.56 KB | None | 0 0
  1. -- By thehipessquad on roblox!
  2. -- Instances:
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local main = Instance.new("Frame")
  6. local Walkspeed = Instance.new("TextButton")
  7. local jumppower = Instance.new("TextButton")
  8. local TPclick = Instance.new("TextButton")
  9. local Btools = Instance.new("TextButton")
  10. local TextButton = Instance.new("TextButton")
  11. local TextBox = Instance.new("TextBox")
  12. local Frame = Instance.new("Frame")
  13. local TextLabel = Instance.new("TextLabel")
  14. local TextLabel_2 = Instance.new("TextLabel")
  15.  
  16. --Properties:
  17.  
  18. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. main.Name = "main"
  22. main.Parent = ScreenGui
  23. main.BackgroundColor3 = Color3.fromRGB(113, 113, 113)
  24. main.BackgroundTransparency = 0.350
  25. main.Position = UDim2.new(0.673355639, 0, 0.508532405, 0)
  26. main.Size = UDim2.new(0, 229, 0, 227)
  27. main.Draggable = true
  28. main.Active = true
  29.  
  30. Walkspeed.Name = "Walkspeed"
  31. Walkspeed.Parent = main
  32. Walkspeed.BackgroundColor3 = Color3.fromRGB(144, 144, 144)
  33. Walkspeed.Position = UDim2.new(0, 0, 0.273127735, 0)
  34. Walkspeed.Size = UDim2.new(0, 95, 0, 33)
  35. Walkspeed.Font = Enum.Font.SourceSans
  36. Walkspeed.Text = "Walkspeed"
  37. Walkspeed.TextColor3 = Color3.fromRGB(0, 0, 0)
  38. Walkspeed.TextScaled = true
  39. Walkspeed.TextSize = 14.000
  40. Walkspeed.TextWrapped = true
  41. Walkspeed.MouseButton1Down:Connect(function()
  42. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = 170
  43. end)
  44.  
  45. jumppower.Name = "jumppower"
  46. jumppower.Parent = main
  47. jumppower.BackgroundColor3 = Color3.fromRGB(144, 144, 144)
  48. jumppower.Position = UDim2.new(0, 0, 0.541850209, 0)
  49. jumppower.Size = UDim2.new(0, 95, 0, 33)
  50. jumppower.Font = Enum.Font.SourceSans
  51. jumppower.Text = "Jumppower"
  52. jumppower.TextColor3 = Color3.fromRGB(0, 0, 0)
  53. jumppower.TextScaled = true
  54. jumppower.TextSize = 14.000
  55. jumppower.TextWrapped = true
  56. jumppower.MouseButton1Down:Connect(function()
  57. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 170
  58. end)
  59.  
  60. TPclick.Name = "TP click"
  61. TPclick.Parent = main
  62. TPclick.BackgroundColor3 = Color3.fromRGB(144, 144, 144)
  63. TPclick.Position = UDim2.new(0, 0, 0.775330365, 0)
  64. TPclick.Size = UDim2.new(0, 95, 0, 33)
  65. TPclick.Font = Enum.Font.SourceSans
  66. TPclick.Text = "TP click(press q to teleport)"
  67. TPclick.TextColor3 = Color3.fromRGB(0, 0, 0)
  68. TPclick.TextScaled = true
  69. TPclick.TextSize = 14.000
  70. TPclick.TextWrapped = true
  71. TPclick.MouseButton1Down:Connect(function()
  72. wait()
  73. local Player = game:GetService("Players").LocalPlayer
  74. local Mouse = Player:GetMouse()
  75. Mouse.KeyDown:Connect(function(key)
  76. if key == "q" then --Change K to any keyboard button
  77. Player.Character:MoveTo(Mouse.Hit.p)
  78. end
  79. end)
  80. end)
  81. Btools.Name = "Btools"
  82. Btools.Parent = main
  83. Btools.BackgroundColor3 = Color3.fromRGB(144, 144, 144)
  84. Btools.Position = UDim2.new(0.550218344, 0, 0.273127735, 0)
  85. Btools.Size = UDim2.new(0, 95, 0, 33)
  86. Btools.Font = Enum.Font.SourceSans
  87. Btools.Text = "Btools (client)"
  88. Btools.TextColor3 = Color3.fromRGB(0, 0, 0)
  89. Btools.TextScaled = true
  90. Btools.TextSize = 14.000
  91. Btools.TextWrapped = true
  92. Btools.MouseButton1Down:Connect(function()
  93. a = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  94. a.BinType = 2
  95. b = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  96. b.BinType = 3
  97. c = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  98. c.BinType = 4
  99. end)
  100.  
  101.  
  102. TextButton.Parent = main
  103. TextButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  104. TextButton.Position = UDim2.new(0.497816592, 0, 0.775330365, 0)
  105. TextButton.Size = UDim2.new(0, 95, 0, 33)
  106. TextButton.Font = Enum.Font.SourceSans
  107. TextButton.Text = "Click here to get him"
  108. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  109. TextButton.TextScaled = true
  110. TextButton.TextSize = 14.000
  111. TextButton.TextWrapped = true
  112.  
  113. local lp = game:FindService("Players").LocalPlayer
  114.  
  115. local function gplr(String)
  116. local Found = {}
  117. local strl = String:lower()
  118. if strl == "all" then
  119. for i,v in pairs(game:FindService("Players"):GetPlayers()) do
  120. table.insert(Found,v)
  121. end
  122. elseif strl == "others" then
  123. for i,v in pairs(game:FindService("Players"):GetPlayers()) do
  124. if v.Name ~= lp.Name then
  125. table.insert(Found,v)
  126. end
  127. end
  128. elseif strl == "me" then
  129. for i,v in pairs(game:FindService("Players"):GetPlayers()) do
  130. if v.Name == lp.Name then
  131. table.insert(Found,v)
  132. end
  133. end
  134. else
  135. for i,v in pairs(game:FindService("Players"):GetPlayers()) do
  136. if v.Name:lower():sub(1, #String) == String:lower() then
  137. table.insert(Found,v)
  138. end
  139. end
  140. end
  141. return Found
  142. end
  143. TextButton.MouseButton1Click:Connect(function()
  144. local Target = gplr(TextBox.Text)
  145. if Target[1] then
  146. Target = Target[1]
  147.  
  148. local Thrust = Instance.new('BodyThrust', lp.Character.HumanoidRootPart)
  149. Thrust.Force = Vector3.new(9999,9999,9999)
  150. Thrust.Name = "YeetForce"
  151. repeat
  152. lp.Character.HumanoidRootPart.CFrame = Target.Character.HumanoidRootPart.CFrame
  153. Thrust.Location = Target.Character.HumanoidRootPart.Position
  154. game:FindService("RunService").Heartbeat:wait()
  155. until not Target.Character:FindFirstChild("Head")
  156. else
  157. notif("Invalid player")
  158. end
  159. end)
  160.  
  161. TextBox.Parent = main
  162. TextBox.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  163. TextBox.Position = UDim2.new(0.436681241, 0, 0.537444949, 0)
  164. TextBox.Size = UDim2.new(0, 123, 0, 34)
  165. TextBox.Font = Enum.Font.SourceSans
  166. TextBox.PlaceholderText = "(fling someone)"
  167. TextBox.Text = ""
  168. TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
  169. TextBox.TextScaled = true
  170. TextBox.TextSize = 14.000
  171. TextBox.TextWrapped = true
  172.  
  173. Frame.Parent = main
  174. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  175. Frame.Position = UDim2.new(0, 0, 0.136563882, 0)
  176. Frame.Size = UDim2.new(0, 229, 0, 3)
  177.  
  178. TextLabel.Parent = main
  179. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  180. TextLabel.BackgroundTransparency = 1.000
  181. TextLabel.Position = UDim2.new(0.0611353666, 0, 0, 0)
  182. TextLabel.Size = UDim2.new(0, 200, 0, 22)
  183. TextLabel.Font = Enum.Font.SourceSans
  184. TextLabel.Text = "Universal FE Epik Hax"
  185. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  186. TextLabel.TextScaled = true
  187. TextLabel.TextSize = 14.000
  188. TextLabel.TextWrapped = true
  189.  
  190. TextLabel_2.Parent = main
  191. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  192. TextLabel_2.BackgroundTransparency = 1.000
  193. TextLabel_2.Position = UDim2.new(0.0611353666, 0, 0.149779737, 0)
  194. TextLabel_2.Size = UDim2.new(0, 200, 0, 22)
  195. TextLabel_2.Font = Enum.Font.SourceSans
  196. TextLabel_2.Text = "Made by Thehipessquad on roblox!"
  197. TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  198. TextLabel_2.TextSize = 14.000
  199. TextLabel_2.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement