Advertisement
Scriptorz5

🤖Robot Simulator🤖

Oct 12th, 2018
3,248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.65 KB | None | 0 0
  1. SOME OF THE SCRIPTS MAY NOT WORK
  2. -------------------------------------------------------------
  3. Fullbright:
  4.  
  5. local plr = game.Players.LocalPlayer.Name
  6. workspace[plr].light.Part.SpotLight.Brightness = 999999
  7. workspace[plr].light.Handle.PointLight.Range = 999999
  8. -------------------------------------------------------------
  9. Auto Sell:
  10.  
  11. _G.toggle = false
  12. while _G.toggle do
  13. wait(5)
  14. local All = game.Players.LocalPlayer.count.Normal.Value
  15. local Event = game:GetService("ReplicatedStorage").RemoteEvent
  16. Event:FireServer("sell", "Normal", All)
  17. end
  18. -------------------------------------------------------------
  19. Life Saver: (Press E)
  20.  
  21. local plr = game.Players.LocalPlayer.Character
  22. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(KeyPressed)
  23. if KeyPressed == "e" then
  24. plr:MoveTo(Vector3.new(0, 0, -1550))
  25. end
  26. end)
  27. -------------------------------------------------------------
  28. XP:
  29.  
  30. while true do
  31. wait(0.1)
  32. game.ReplicatedStorage.Functions.Attack:InvokeServer()
  33. game.ReplicatedStorage.Functions.GetPlayerStat:InvokeServer()
  34. end
  35. -------------------------------------------------------------
  36. XP v2:
  37.  
  38. while game: service"RunService".RenderStepped:wait() do
  39. game.ReplicatedStorage.Functions.Attack:InvokeServer()
  40. game.ReplicatedStorage.Functions.GetPlayerStat:InvokeServer()
  41. game.ReplicatedStorage.Functions.Attack:InvokeServer()
  42. game.ReplicatedStorage.Functions.GetPlayerStat:InvokeServer()
  43. game.ReplicatedStorage.Functions.Attack:InvokeServer()
  44. game.ReplicatedStorage.Functions.GetPlayerStat:InvokeServer()
  45. end
  46. -------------------------------------------------------------
  47. Auto Farm:
  48.  
  49. for i = 1,1000 do
  50. game.ReplicatedStorage.Functions.Attack:InvokeServer(1)
  51. wait(0.1)
  52. end
  53. -------------------------------------------------------------
  54. GUI (M open N close):
  55.  
  56. -- Open is M and close is N
  57.  
  58. local ScreenGui = Instance.new("ScreenGui")
  59. local thing = Instance.new("Frame")
  60. local name = Instance.new("TextLabel")
  61. local line = Instance.new("TextLabel")
  62. local ammount = Instance.new("TextBox")
  63. local exe = Instance.new("TextButton")
  64.  
  65. -- Properties
  66.  
  67. ScreenGui.Parent = game.CoreGui
  68. ScreenGui.Name = "no u"
  69. ScreenGui.Enabled = true
  70. ScreenGui.ResetOnSpawn = false
  71.  
  72. thing.Name = "thing"
  73. thing.Parent = ScreenGui
  74. thing.BackgroundColor3 = Color3.new(1, 1, 1)
  75. thing.BorderColor3 = Color3.new(0, 0.517647, 1)
  76. thing.BorderSizePixel = 5
  77. thing.Position = UDim2.new(0.397510976, 0, 0.256917, 0)
  78. thing.Size = UDim2.new(0, 279, 0, 246)
  79. thing.Active = true
  80. thing.Draggable = true
  81.  
  82. name.Name = "name"
  83. name.Parent = thing
  84. name.BackgroundColor3 = Color3.new(0, 0.517647, 1)
  85. name.BorderColor3 = Color3.new(0, 0.517647, 1)
  86. name.Size = UDim2.new(0, 279, 0, 30)
  87. name.Font = Enum.Font.ArialBold
  88. name.Text = "Robot Sim Auto Farm By Gostrondude"
  89. name.TextColor3 = Color3.new(1, 1, 1)
  90. name.TextSize = 16
  91.  
  92. line.Name = "line"
  93. line.Parent = thing
  94. line.BackgroundColor3 = Color3.new(0, 0.517647, 1)
  95. line.BorderColor3 = Color3.new(0, 0.517647, 1)
  96. line.Position = UDim2.new(0, 0, 0.943089426, 0)
  97. line.Size = UDim2.new(0, 279, 0, 14)
  98. line.Font = Enum.Font.SourceSans
  99. line.Text = ""
  100. line.TextColor3 = Color3.new(0, 0, 0)
  101. line.TextSize = 14
  102.  
  103. ammount.Name = "ammount"
  104. ammount.Parent = thing
  105. ammount.BackgroundColor3 = Color3.new(0, 0.517647, 1)
  106. ammount.BorderColor3 = Color3.new(0, 0.517647, 1)
  107. ammount.Position = UDim2.new(0.139784947, 0, 0.308943093, 0)
  108. ammount.Size = UDim2.new(0, 200, 0, 31)
  109. ammount.Font = Enum.Font.SourceSans
  110. ammount.Text = "Loop Ammount Here"
  111. ammount.TextColor3 = Color3.new(1, 1, 1)
  112. ammount.TextSize = 25
  113. ammount.TextWrapped = true
  114.  
  115. exe.Name = "exe"
  116. exe.Parent = thing
  117. exe.BackgroundColor3 = Color3.new(0, 0.517647, 1)
  118. exe.BorderColor3 = Color3.new(0, 0.517647, 1)
  119. exe.Position = UDim2.new(0.0896057338, 0, 0.626016259, 0)
  120. exe.Size = UDim2.new(0, 229, 0, 34)
  121. exe.Font = Enum.Font.SourceSans
  122. exe.Text = "Execute"
  123. exe.TextColor3 = Color3.new(1, 1, 1)
  124. exe.TextSize = 25
  125.  
  126. function onKeyPress(inputObject, gameProcessedEvent)
  127. if inputObject.KeyCode == Enum.KeyCode.M then
  128. thing:TweenPosition(UDim2.new(0.398, 0,0.257, 0), "Out", "Sine", 1)
  129.  
  130. else
  131.  
  132. if inputObject.KeyCode == Enum.KeyCode.N then
  133. thing:TweenPosition(UDim2.new(0.398, 0,5, 0), "In", "Sine", 1)
  134. end
  135. end
  136. end
  137.  
  138. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  139.  
  140. exe.MouseButton1Down:Connect(function()
  141. for i = 1,ammount.Text do
  142. game.ReplicatedStorage.Functions.Attack:InvokeServer(1)
  143. wait(0.1)
  144. end
  145. end)
  146. -------------------------------------------------------------
  147. Rebirth:
  148.  
  149. while wait() do
  150. Game.ReplicatedStorage.Functions.Rebirth:InvokeServer()
  151. end
  152. -------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement