BluezModZ

Emoji Lifting Sim Gui Roblox - BluezModZ

Jan 17th, 2022 (edited)
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.51 KB | None | 0 0
  1. --Made By BluezModZ
  2. --https://www.bluezmodz.weebly.com/
  3. --https://www.bluezmodz-scripts.weebly.com
  4. --https://www.bluezmodz-executor.weebly.com
  5. --DIE COVID DIE :/
  6.  
  7.  
  8. local ScreenGui = Instance.new("ScreenGui")
  9. local Frame = Instance.new("Frame")
  10. local TextLabel = Instance.new("TextLabel")
  11. local MoneyOn = Instance.new("TextButton")
  12. local MoneyOff = Instance.new("TextButton")
  13. local AfkOn = Instance.new("TextButton")
  14. local AfkOff = Instance.new("TextButton")
  15.  
  16. --Properties:
  17.  
  18. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. Frame.Parent = ScreenGui
  22. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  23. Frame.Position = UDim2.new(0.376717865, 0, 0.19198665, 0)
  24. Frame.Size = UDim2.new(0, 304, 0, 384)
  25. Frame.Active = true
  26. Frame.Draggable = true
  27.  
  28. TextLabel.Parent = Frame
  29. TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 127)
  30. TextLabel.Size = UDim2.new(0, 304, 0, 50)
  31. TextLabel.Font = Enum.Font.SciFi
  32. TextLabel.Text = "BluezModZ Emoji Lifiting Sim Gui"
  33. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  34. TextLabel.TextSize = 23.000
  35.  
  36. MoneyOn.Name = "MoneyOn"
  37. MoneyOn.Parent = Frame
  38. MoneyOn.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  39. MoneyOn.BorderColor3 = Color3.fromRGB(0, 0, 127)
  40. MoneyOn.Position = UDim2.new(0.171052635, 0, 0.186732203, 0)
  41. MoneyOn.Size = UDim2.new(0, 200, 0, 50)
  42. MoneyOn.Font = Enum.Font.SourceSans
  43. MoneyOn.Text = "Loop Give Money [On]"
  44. MoneyOn.TextColor3 = Color3.fromRGB(0, 85, 255)
  45. MoneyOn.TextSize = 20.000
  46. MoneyOn.MouseButton1Down:connect(function()
  47. getgenv().give = true
  48.  
  49. while wait() do
  50.     if getgenv().give == true then
  51.         game:GetService("ReplicatedStorage").RemoteEvents.Stuff:FireServer()
  52.     end
  53. end
  54.  
  55. end)
  56.  
  57. MoneyOff.Name = "MoneyOff"
  58. MoneyOff.Parent = Frame
  59. MoneyOff.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  60. MoneyOff.BorderColor3 = Color3.fromRGB(0, 0, 127)
  61. MoneyOff.Position = UDim2.new(0.171052635, 0, 0.383630961, 0)
  62. MoneyOff.Size = UDim2.new(0, 200, 0, 50)
  63. MoneyOff.Font = Enum.Font.SourceSans
  64. MoneyOff.Text = "Loop Give Money [Off]"
  65. MoneyOff.TextColor3 = Color3.fromRGB(0, 85, 255)
  66. MoneyOff.TextSize = 20.000
  67. MoneyOff.MouseButton1Down:connect(function()
  68. getgenv().give = false
  69.  
  70. while wait() do
  71.     if getgenv().give == true then
  72.         game:GetService("ReplicatedStorage").RemoteEvents.Stuff:FireServer()
  73.     end
  74. end
  75. end)
  76.  
  77. AfkOn.Name = "AfkOn"
  78. AfkOn.Parent = Frame
  79. AfkOn.BackgroundColor3 = Color3.fromRGB(2, 2, 2)
  80. AfkOn.BorderColor3 = Color3.fromRGB(0, 0, 127)
  81. AfkOn.Position = UDim2.new(0.171052635, 0, 0.586115301, 0)
  82. AfkOn.Size = UDim2.new(0, 200, 0, 50)
  83. AfkOn.Font = Enum.Font.SourceSans
  84. AfkOn.Text = "Anti AFK [On]"
  85. AfkOn.TextColor3 = Color3.fromRGB(0, 85, 255)
  86. AfkOn.TextSize = 20.000
  87. AfkOn.MouseButton1Down:connect(function()
  88. getgenv().jump = true
  89.  
  90. while wait() do
  91.     if getgenv().jump == true then
  92.         game.Players.LocalPlayer.Character.Humanoid.Jump = true
  93.     end
  94. end
  95. end)
  96.  
  97. AfkOff.Name = "AfkOff"
  98. AfkOff.Parent = Frame
  99. AfkOff.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  100. AfkOff.BorderColor3 = Color3.fromRGB(0, 0, 127)
  101. AfkOff.Position = UDim2.new(0.171052635, 0, 0.777435303, 0)
  102. AfkOff.Size = UDim2.new(0, 200, 0, 50)
  103. AfkOff.Font = Enum.Font.SourceSans
  104. AfkOff.Text = "Anti Afk [Off]"
  105. AfkOff.TextColor3 = Color3.fromRGB(0, 85, 255)
  106. AfkOff.TextSize = 20.000
  107. AfkOff.MouseButton1Down:connect(function()
  108. getgenv().jump = false
  109.  
  110. while wait() do
  111.     if getgenv().jump == true then
  112.         game.Players.LocalPlayer.Character.Humanoid.Jump = true
  113.     end
  114. end
  115. end)
Add Comment
Please, Sign In to add comment