1231223123

[FE] Work at a pizza place customer script - NEW UPADATED SCRIPT

Oct 21st, 2020 (edited)
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.30 KB | None | 0 0
  1. game["Run Service"].RenderStepped:connect(function()
  2.     settings().Physics.AllowSleep = false
  3.     setsimulationradius(math.huge*math.huge,math.huge*math.huge)
  4. end)
  5.  
  6. local Main = Instance.new("ScreenGui")
  7. local MainFrame = Instance.new("Frame")
  8. local Image = Instance.new("ImageLabel")
  9. local Text = Instance.new("TextLabel")
  10. local Dough = Instance.new("TextButton")
  11. local FlyingPeople = Instance.new("TextButton")
  12.  
  13. --Properties:
  14.  
  15. Main.Name = "Main"
  16. Main.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  17.  
  18. MainFrame.Name = "MainFrame"
  19. MainFrame.Parent = Main
  20. MainFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  21. MainFrame.BackgroundTransparency = 0.600
  22. MainFrame.Position = UDim2.new(0.254777074, 0, 0.184743747, 0)
  23. MainFrame.Size = UDim2.new(0, 392, 0, 211)
  24.  
  25. Image.Name = "Image"
  26. Image.Parent = MainFrame
  27. Image.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  28. Image.BackgroundTransparency = 1.000
  29. Image.Position = UDim2.new(0.18877551, 0, 0.0284360182, 0)
  30. Image.Size = UDim2.new(0, 36, 0, 38)
  31. Image.Image = "rbxassetid://1364168001"
  32.  
  33. Text.Name = "Text"
  34. Text.Parent = MainFrame
  35. Text.BackgroundColor3 = Color3.fromRGB(6, 255, 218)
  36. Text.BackgroundTransparency = 1.000
  37. Text.Position = UDim2.new(0.28061223, 0, 0.0284360182, 0)
  38. Text.Size = UDim2.new(0, 200, 0, 38)
  39. Text.Font = Enum.Font.GothamBold
  40. Text.Text = "-FE GUI BY MR.KNOWITALL YT"
  41. Text.TextColor3 = Color3.fromRGB(53, 195, 202)
  42. Text.TextScaled = true
  43. Text.TextSize = 14.000
  44. Text.TextWrapped = true
  45.  
  46. Dough.Name = "Dough"
  47. Dough.Parent = MainFrame
  48. Dough.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  49. Dough.BackgroundTransparency = 1.000
  50. Dough.Position = UDim2.new(0, 0, 0.265402853, 0)
  51. Dough.Size = UDim2.new(0, 200, 0, 155)
  52. Dough.Font = Enum.Font.RobotoCondensed
  53. Dough.Text = "MOVE PIZZA AND DOUGH"
  54. Dough.TextColor3 = Color3.fromRGB(0, 0, 0)
  55. Dough.TextScaled = true
  56. Dough.TextSize = 14.000
  57. Dough.TextWrapped = true
  58. Dough.MouseButton1Down:Connect(function()
  59.   local Dough = game.workspace.AllDough:GetChildren()
  60.  
  61.     while wait() do
  62.         for i, Dough in pairs(Dough) do
  63.           B1 = Instance.new("BodyPosition")
  64.             B1.Parent = Dough
  65.             Dough.BodyPosition.Position = Vector3.new(24.6974, 7.67148, 44.7852)
  66.             wait(4)
  67.             Dough.BodyPosition.Position = Vector3.new(31.6489, 8.06607, 49.7148)
  68.             wait(2)
  69.             Dough.BodyPosition.Position = Vector3.new(28.6122, 5.27094, 77.4769)
  70.             wait(5)
  71.             Dough.BodyPosition.Position = Vector3.new(47.4032, 4.83851, 161.794)
  72.  
  73.  
  74.  
  75.         end
  76.     end
  77.     --
  78.  
  79. end)
  80.  
  81. FlyingPeople.Name = "Flying People"
  82. FlyingPeople.Parent = MainFrame
  83. FlyingPeople.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  84. FlyingPeople.BackgroundTransparency = 1.000
  85. FlyingPeople.Position = UDim2.new(0.510204077, 0, 0.265402853, 0)
  86. FlyingPeople.Size = UDim2.new(0, 192, 0, 155)
  87. FlyingPeople.Font = Enum.Font.RobotoCondensed
  88. FlyingPeople.Text = "FLYING PEOPLE"
  89. FlyingPeople.TextColor3 = Color3.fromRGB(0, 0, 0)
  90. FlyingPeople.TextScaled = true
  91. FlyingPeople.TextSize = 14.000
  92. FlyingPeople.TextWrapped = true
  93. FlyingPeople.MouseButton1Down:Connect(function()
  94.     --Flying People
  95.  
  96.     local People = game.workspace.Customers:GetChildren()
  97. while wait() do
  98.     for index, People in pairs(People) do
  99.         B1 = Instance.new("BodyPosition")
  100.         B1.Parent = People.Head
  101.         People.Head.BodyPosition.Position = Vector3.new(47, 7.25487, 13999999995)
  102.     end
  103. end
  104.  
  105.  
  106. end)
Add Comment
Please, Sign In to add comment