Advertisement
Guest User

FE Yeet Script

a guest
Aug 31st, 2019
9,567
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. (Remove this and the spacing below. The original thread: https://v3rmillion.net/showthread.php?tid=773646)
  2.  
  3. local scubaYEET = Instance.new("ScreenGui")
  4.  
  5. local Frame = Instance.new("Frame")
  6. local TextBox = Instance.new("TextBox")
  7. local TextButton = Instance.new("TextButton")
  8. local TextLabel = Instance.new("TextLabel")
  9. scubaYEET.Name = "scubaYEET"
  10. scubaYEET.Parent = game:GetService('CoreGui')
  11. scubaYEET.ResetOnSpawn = false
  12. Frame.Parent = scubaYEET
  13. Frame.Active = true
  14. Frame.Draggable = true
  15. Frame.BackgroundColor3 = Color3.new(0.352941, 0.352941, 0.352941)
  16. Frame.BorderSizePixel = 0
  17. Frame.Position = UDim2.new(0.0702970326, 0, 0.724137902, 0)
  18. Frame.Size = UDim2.new(0, 452, 0, 64)
  19. TextBox.Parent = Frame
  20. TextBox.BackgroundColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  21. TextBox.BorderSizePixel = 0
  22. TextBox.Position = UDim2.new(0.0293086898, 0, 0.101439953, 0)
  23. TextBox.Size = UDim2.new(0, 323, 0, 50)
  24. TextBox.Font = Enum.Font.Gotham
  25. TextBox.PlaceholderText = "Player Name"
  26. TextBox.Text = ""
  27. TextBox.TextColor3 = Color3.new(1, 1, 1)
  28. TextBox.TextSize = 14
  29. TextButton.Parent = Frame
  30. TextButton.BackgroundColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  31. TextButton.BorderSizePixel = 0
  32. TextButton.Position = UDim2.new(0.758849561, 0, 0.09375, 0)
  33. TextButton.Size = UDim2.new(0, 99, 0, 50)
  34. TextButton.Font = Enum.Font.Arcade
  35. TextButton.Text = "Y E E T"
  36. TextButton.TextColor3 = Color3.new(1, 1, 1)
  37. TextButton.TextSize = 14
  38. TextLabel.Parent = Frame
  39. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  40. TextLabel.BackgroundTransparency = 1
  41. TextLabel.BorderSizePixel = 0
  42. TextLabel.Position = UDim2.new(0.25, 0, 1.00000048, 0)
  43. TextLabel.Size = UDim2.new(0, 200, 0, 18)
  44. TextLabel.Font = Enum.Font.SourceSans
  45. TextLabel.Text = "yeet gui by scuba kermit xd"
  46. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  47. TextLabel.TextScaled = true
  48. TextLabel.TextSize = 14
  49. TextLabel.TextWrapped = true
  50. TextButton.MouseButton1Click:Connect(function()
  51. local target = game:GetService('Players')[TextBox.Text].Character
  52.  
  53. game:GetService'Players'.LocalPlayer.Character.Humanoid.PlatformStand = true
  54. local coin = Instance.new('BodyThrust',game:GetService'Players'.LocalPlayer.Character.HumanoidRootPart)
  55. coin.Force = Vector3.new(2555,0,2555)
  56. 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
  57. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement