Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- SOME OF THE SCRIPTS MAY NOT WORK
- -------------------------------------------------------------
- Fullbright:
- local plr = game.Players.LocalPlayer.Name
- workspace[plr].light.Part.SpotLight.Brightness = 999999
- workspace[plr].light.Handle.PointLight.Range = 999999
- -------------------------------------------------------------
- Auto Sell:
- _G.toggle = false
- while _G.toggle do
- wait(5)
- local All = game.Players.LocalPlayer.count.Normal.Value
- local Event = game:GetService("ReplicatedStorage").RemoteEvent
- Event:FireServer("sell", "Normal", All)
- end
- -------------------------------------------------------------
- Life Saver: (Press E)
- local plr = game.Players.LocalPlayer.Character
- game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(KeyPressed)
- if KeyPressed == "e" then
- plr:MoveTo(Vector3.new(0, 0, -1550))
- end
- end)
- -------------------------------------------------------------
- XP:
- while true do
- wait(0.1)
- game.ReplicatedStorage.Functions.Attack:InvokeServer()
- game.ReplicatedStorage.Functions.GetPlayerStat:InvokeServer()
- end
- -------------------------------------------------------------
- XP v2:
- while game: service"RunService".RenderStepped:wait() do
- game.ReplicatedStorage.Functions.Attack:InvokeServer()
- game.ReplicatedStorage.Functions.GetPlayerStat:InvokeServer()
- game.ReplicatedStorage.Functions.Attack:InvokeServer()
- game.ReplicatedStorage.Functions.GetPlayerStat:InvokeServer()
- game.ReplicatedStorage.Functions.Attack:InvokeServer()
- game.ReplicatedStorage.Functions.GetPlayerStat:InvokeServer()
- end
- -------------------------------------------------------------
- Auto Farm:
- for i = 1,1000 do
- game.ReplicatedStorage.Functions.Attack:InvokeServer(1)
- wait(0.1)
- end
- -------------------------------------------------------------
- GUI (M open N close):
- -- Open is M and close is N
- local ScreenGui = Instance.new("ScreenGui")
- local thing = Instance.new("Frame")
- local name = Instance.new("TextLabel")
- local line = Instance.new("TextLabel")
- local ammount = Instance.new("TextBox")
- local exe = Instance.new("TextButton")
- -- Properties
- ScreenGui.Parent = game.CoreGui
- ScreenGui.Name = "no u"
- ScreenGui.Enabled = true
- ScreenGui.ResetOnSpawn = false
- thing.Name = "thing"
- thing.Parent = ScreenGui
- thing.BackgroundColor3 = Color3.new(1, 1, 1)
- thing.BorderColor3 = Color3.new(0, 0.517647, 1)
- thing.BorderSizePixel = 5
- thing.Position = UDim2.new(0.397510976, 0, 0.256917, 0)
- thing.Size = UDim2.new(0, 279, 0, 246)
- thing.Active = true
- thing.Draggable = true
- name.Name = "name"
- name.Parent = thing
- name.BackgroundColor3 = Color3.new(0, 0.517647, 1)
- name.BorderColor3 = Color3.new(0, 0.517647, 1)
- name.Size = UDim2.new(0, 279, 0, 30)
- name.Font = Enum.Font.ArialBold
- name.Text = "Robot Sim Auto Farm By Gostrondude"
- name.TextColor3 = Color3.new(1, 1, 1)
- name.TextSize = 16
- line.Name = "line"
- line.Parent = thing
- line.BackgroundColor3 = Color3.new(0, 0.517647, 1)
- line.BorderColor3 = Color3.new(0, 0.517647, 1)
- line.Position = UDim2.new(0, 0, 0.943089426, 0)
- line.Size = UDim2.new(0, 279, 0, 14)
- line.Font = Enum.Font.SourceSans
- line.Text = ""
- line.TextColor3 = Color3.new(0, 0, 0)
- line.TextSize = 14
- ammount.Name = "ammount"
- ammount.Parent = thing
- ammount.BackgroundColor3 = Color3.new(0, 0.517647, 1)
- ammount.BorderColor3 = Color3.new(0, 0.517647, 1)
- ammount.Position = UDim2.new(0.139784947, 0, 0.308943093, 0)
- ammount.Size = UDim2.new(0, 200, 0, 31)
- ammount.Font = Enum.Font.SourceSans
- ammount.Text = "Loop Ammount Here"
- ammount.TextColor3 = Color3.new(1, 1, 1)
- ammount.TextSize = 25
- ammount.TextWrapped = true
- exe.Name = "exe"
- exe.Parent = thing
- exe.BackgroundColor3 = Color3.new(0, 0.517647, 1)
- exe.BorderColor3 = Color3.new(0, 0.517647, 1)
- exe.Position = UDim2.new(0.0896057338, 0, 0.626016259, 0)
- exe.Size = UDim2.new(0, 229, 0, 34)
- exe.Font = Enum.Font.SourceSans
- exe.Text = "Execute"
- exe.TextColor3 = Color3.new(1, 1, 1)
- exe.TextSize = 25
- function onKeyPress(inputObject, gameProcessedEvent)
- if inputObject.KeyCode == Enum.KeyCode.M then
- thing:TweenPosition(UDim2.new(0.398, 0,0.257, 0), "Out", "Sine", 1)
- else
- if inputObject.KeyCode == Enum.KeyCode.N then
- thing:TweenPosition(UDim2.new(0.398, 0,5, 0), "In", "Sine", 1)
- end
- end
- end
- game:GetService("UserInputService").InputBegan:connect(onKeyPress)
- exe.MouseButton1Down:Connect(function()
- for i = 1,ammount.Text do
- game.ReplicatedStorage.Functions.Attack:InvokeServer(1)
- wait(0.1)
- end
- end)
- -------------------------------------------------------------
- Rebirth:
- while wait() do
- Game.ReplicatedStorage.Functions.Rebirth:InvokeServer()
- end
- -------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement