Upscalefanatic3

[FE] FLING PLAYERS WITHOUT TOOLS!

Feb 4th, 2019
635
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 KB | None | 0 0
  1. local scubaYEET = Instance.new("ScreenGui")
  2.  
  3. local Frame = Instance.new("Frame")
  4. local TextBox = Instance.new("TextBox")
  5. local TextButton = Instance.new("TextButton")
  6. local TextLabel = Instance.new("TextLabel")
  7. scubaYEET.Name = "scubaYEET"
  8. scubaYEET.Parent = game:GetService('CoreGui')
  9. scubaYEET.ResetOnSpawn = false
  10. Frame.Parent = scubaYEET
  11. Frame.Active = true
  12. Frame.Draggable = true
  13. Frame.BackgroundColor3 = Color3.new(0.352941, 0.352941, 0.352941)
  14. Frame.BorderSizePixel = 0
  15. Frame.Position = UDim2.new(0.0702970326, 0, 0.724137902, 0)
  16. Frame.Size = UDim2.new(0, 452, 0, 64)
  17. TextBox.Parent = Frame
  18. TextBox.BackgroundColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  19. TextBox.BorderSizePixel = 0
  20. TextBox.Position = UDim2.new(0.0293086898, 0, 0.101439953, 0)
  21. TextBox.Size = UDim2.new(0, 323, 0, 50)
  22. TextBox.Font = Enum.Font.Gotham
  23. TextBox.PlaceholderText = "Player Name"
  24. TextBox.Text = ""
  25. TextBox.TextColor3 = Color3.new(1, 1, 1)
  26. TextBox.TextSize = 14
  27. TextButton.Parent = Frame
  28. TextButton.BackgroundColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  29. TextButton.BorderSizePixel = 0
  30. TextButton.Position = UDim2.new(0.758849561, 0, 0.09375, 0)
  31. TextButton.Size = UDim2.new(0, 99, 0, 50)
  32. TextButton.Font = Enum.Font.Arcade
  33. TextButton.Text = "Y E E T"
  34. TextButton.TextColor3 = Color3.new(1, 1, 1)
  35. TextButton.TextSize = 14
  36. TextLabel.Parent = Frame
  37. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  38. TextLabel.BackgroundTransparency = 1
  39. TextLabel.BorderSizePixel = 0
  40. TextLabel.Position = UDim2.new(0.25, 0, 1.00000048, 0)
  41. TextLabel.Size = UDim2.new(0, 200, 0, 18)
  42. TextLabel.Font = Enum.Font.SourceSans
  43. TextLabel.Text = "yeet gui by scuba kermit xd"
  44. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  45. TextLabel.TextScaled = true
  46. TextLabel.TextSize = 14
  47. TextLabel.TextWrapped = true
  48. TextButton.MouseButton1Click:Connect(function()
  49. local target = game:GetService('Players')[TextBox.Text].Character
  50.  
  51. game:GetService'Players'.LocalPlayer.Character.Humanoid.PlatformStand = true
  52. local coin = Instance.new('BodyThrust',game:GetService'Players'.LocalPlayer.Character.HumanoidRootPart)
  53. coin.Force = Vector3.new(2555,0,2555)
  54. repeat game:GetService'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = target.Head.CFrame;coin.Location = target.Head.Position game["Run Service"].Heartbeat:wait() until not target.Head
  55. end)
Add Comment
Please, Sign In to add comment