Advertisement
hoffmvn2

wasd

Apr 17th, 2021
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. -- Made By Pigeon Dude
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local Title = Instance.new("TextLabel")
  6. local UICorner = Instance.new("UICorner")
  7. local AfkFarm = Instance.new("TextButton")
  8.  
  9. --Properties:
  10.  
  11. ScreenGui.Parent = game.CoreGui
  12. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. Main.Name = "Main"
  15. Main.Parent = ScreenGui
  16. Main.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  17. Main.Position = UDim2.new(0.0401785709, 0, 0.681958973, 0)
  18. Main.Size = UDim2.new(0.25127551, 0, 0.234950602, 0)
  19. Main.Active = true
  20. Main.Draggable = true
  21.  
  22. Title.Name = "Title"
  23. Title.Parent = Main
  24. Title.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  25. Title.Position = UDim2.new(0.0761421323, 0, 0.0765260085, 0)
  26. Title.Size = UDim2.new(0.84517765, 0, 0.337466329, 0)
  27. Title.Font = Enum.Font.GothamBold
  28. Title.Text = "Made By: Pigeon Dude"
  29. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  30. Title.TextScaled = true
  31. Title.TextSize = 14.000
  32. Title.TextStrokeTransparency = 0.000
  33. Title.TextWrapped = true
  34.  
  35. UICorner.CornerRadius = UDim.new(0, 20)
  36. UICorner.Parent = Main
  37.  
  38. AfkFarm.Name = "AfkFarm"
  39. AfkFarm.Parent = Main
  40. AfkFarm.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  41. AfkFarm.Position = UDim2.new(0.0761421323, 0, 0.483425021, 0)
  42. AfkFarm.Size = UDim2.new(0.84517765, 0, 0.425157368, 0)
  43. AfkFarm.Font = Enum.Font.GothamBold
  44. AfkFarm.Text = "AfkFarm"
  45. AfkFarm.TextColor3 = Color3.fromRGB(255, 255, 255)
  46. AfkFarm.TextScaled = true
  47. AfkFarm.TextSize = 14.000
  48. AfkFarm.TextStrokeTransparency = 0.000
  49. AfkFarm.TextWrapped = true
  50. AfkFarm.MouseButton1Click:Connect(function()
  51. local TweenService = game:GetService('TweenService')
  52.  
  53.  
  54. spawn(function()
  55. local debounce = false
  56. game:GetService('RunService').RenderStepped:Connect(function()
  57. if debounce == true then
  58. return
  59. end
  60. debounce = true
  61.  
  62. local plr = game.Players.LocalPlayer
  63. local char = plr.Character
  64.  
  65. char.HumanoidRootPart.CFrame = CFrame.new(-55.7047195, -9.92602158, -274.044922, -0.999055862, 2.2645871e-08, 0.0434471555, 2.07044444e-08, 1, -4.51347049e-08, -0.0434471555, -4.41925856e-08, -0.999055862) + Vector3.new(0, 50, 0)
  66. wait(1)
  67. TweenService:Create(char.HumanoidRootPart, TweenInfo.new(30), {CFrame = CFrame.new(-62.3435783, 37.1261864, 9309.92871, 0.966365039, -8.40041281e-09, 0.257176876, 2.07044444e-08, 1, -4.51347049e-08, -0.257176876, 4.89412777e-08, 0.966365039)}):Play()
  68. wait(29)
  69. TweenService:Create(char.HumanoidRootPart, TweenInfo.new(2), {CFrame = CFrame.new(-56.427002, -360.430267, 9483.74902, -0.999547422, 4.76316799e-08, 0.0300814454, 4.78301097e-08, 1, 5.87685989e-09, -0.0300814454, 7.31299954e-09, -0.999547422)}):Play()
  70. wait(20)
  71. debounce = false
  72. end)
  73. end)
  74.  
  75. game:GetService('RunService').RenderStepped:Connect(function()
  76. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  77. end)
  78. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement