Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Made By BluezModZ
- --https://www.bluezmodz.weebly.com/
- --https://www.bluezmodz-scripts.weebly.com
- --https://www.bluezmodz-executor.weebly.com
- --DIE COVID DIE :/
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local MoneyOn = Instance.new("TextButton")
- local MoneyOff = Instance.new("TextButton")
- local AfkOn = Instance.new("TextButton")
- local AfkOff = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Frame.Position = UDim2.new(0.376717865, 0, 0.19198665, 0)
- Frame.Size = UDim2.new(0, 304, 0, 384)
- Frame.Active = true
- Frame.Draggable = true
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 127)
- TextLabel.Size = UDim2.new(0, 304, 0, 50)
- TextLabel.Font = Enum.Font.SciFi
- TextLabel.Text = "BluezModZ Emoji Lifiting Sim Gui"
- TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.TextSize = 23.000
- MoneyOn.Name = "MoneyOn"
- MoneyOn.Parent = Frame
- MoneyOn.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- MoneyOn.BorderColor3 = Color3.fromRGB(0, 0, 127)
- MoneyOn.Position = UDim2.new(0.171052635, 0, 0.186732203, 0)
- MoneyOn.Size = UDim2.new(0, 200, 0, 50)
- MoneyOn.Font = Enum.Font.SourceSans
- MoneyOn.Text = "Loop Give Money [On]"
- MoneyOn.TextColor3 = Color3.fromRGB(0, 85, 255)
- MoneyOn.TextSize = 20.000
- MoneyOn.MouseButton1Down:connect(function()
- getgenv().give = true
- while wait() do
- if getgenv().give == true then
- game:GetService("ReplicatedStorage").RemoteEvents.Stuff:FireServer()
- end
- end
- end)
- MoneyOff.Name = "MoneyOff"
- MoneyOff.Parent = Frame
- MoneyOff.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- MoneyOff.BorderColor3 = Color3.fromRGB(0, 0, 127)
- MoneyOff.Position = UDim2.new(0.171052635, 0, 0.383630961, 0)
- MoneyOff.Size = UDim2.new(0, 200, 0, 50)
- MoneyOff.Font = Enum.Font.SourceSans
- MoneyOff.Text = "Loop Give Money [Off]"
- MoneyOff.TextColor3 = Color3.fromRGB(0, 85, 255)
- MoneyOff.TextSize = 20.000
- MoneyOff.MouseButton1Down:connect(function()
- getgenv().give = false
- while wait() do
- if getgenv().give == true then
- game:GetService("ReplicatedStorage").RemoteEvents.Stuff:FireServer()
- end
- end
- end)
- AfkOn.Name = "AfkOn"
- AfkOn.Parent = Frame
- AfkOn.BackgroundColor3 = Color3.fromRGB(2, 2, 2)
- AfkOn.BorderColor3 = Color3.fromRGB(0, 0, 127)
- AfkOn.Position = UDim2.new(0.171052635, 0, 0.586115301, 0)
- AfkOn.Size = UDim2.new(0, 200, 0, 50)
- AfkOn.Font = Enum.Font.SourceSans
- AfkOn.Text = "Anti AFK [On]"
- AfkOn.TextColor3 = Color3.fromRGB(0, 85, 255)
- AfkOn.TextSize = 20.000
- AfkOn.MouseButton1Down:connect(function()
- getgenv().jump = true
- while wait() do
- if getgenv().jump == true then
- game.Players.LocalPlayer.Character.Humanoid.Jump = true
- end
- end
- end)
- AfkOff.Name = "AfkOff"
- AfkOff.Parent = Frame
- AfkOff.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- AfkOff.BorderColor3 = Color3.fromRGB(0, 0, 127)
- AfkOff.Position = UDim2.new(0.171052635, 0, 0.777435303, 0)
- AfkOff.Size = UDim2.new(0, 200, 0, 50)
- AfkOff.Font = Enum.Font.SourceSans
- AfkOff.Text = "Anti Afk [Off]"
- AfkOff.TextColor3 = Color3.fromRGB(0, 85, 255)
- AfkOff.TextSize = 20.000
- AfkOff.MouseButton1Down:connect(function()
- getgenv().jump = false
- while wait() do
- if getgenv().jump == true then
- game.Players.LocalPlayer.Character.Humanoid.Jump = true
- end
- end
- end)
Add Comment
Please, Sign In to add comment