Advertisement
Mistershield

Muscle Legend V1

Apr 9th, 2023 (edited)
406
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.42 KB | None | 1 1
  1. -- By Bruh you think i tell you my roblox name? Im a developer bruh PS: I work for Scriptbloxian Studios guess who i am hehe~
  2. -- Instances:
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local UICorner = Instance.new("UICorner")
  7. local TextLabel = Instance.new("TextLabel")
  8. local AU = Instance.new("TextLabel")
  9. local TextButton = Instance.new("TextButton")
  10. local UICorner_2 = Instance.new("UICorner")
  11. local Name = Instance.new("TextLabel")
  12.  
  13. --Properties:
  14.  
  15. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17. ScreenGui.ResetOnSpawn = false
  18.  
  19. Frame.Parent = ScreenGui
  20. Frame.BackgroundColor3 = Color3.fromRGB(49, 49, 49)
  21. Frame.Position = UDim2.new(0.131830007, 0, 0.125935167, 0)
  22. Frame.Size = UDim2.new(0, 200, 0, 200)
  23.  
  24. UICorner.CornerRadius = UDim.new(0, 20)
  25. UICorner.Parent = Frame
  26.  
  27. TextLabel.Parent = Frame
  28. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  29. TextLabel.BackgroundTransparency = 1.000
  30. TextLabel.Size = UDim2.new(1, 0, 0, 50)
  31. TextLabel.Font = Enum.Font.FredokaOne
  32. TextLabel.Text = "Muscle Legend V1"
  33. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  34. TextLabel.TextScaled = true
  35. TextLabel.TextSize = 14.000
  36. TextLabel.TextWrapped = true
  37.  
  38. AU.Name = "AU"
  39. AU.Parent = Frame
  40. AU.AnchorPoint = Vector2.new(0, 1)
  41. AU.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  42. AU.BackgroundTransparency = 1.000
  43. AU.Position = UDim2.new(0, 0, 1, 0)
  44. AU.Size = UDim2.new(1, 0, 0, 50)
  45. AU.Font = Enum.Font.FredokaOne
  46. AU.Text = "Auto Farm"
  47. AU.TextColor3 = Color3.fromRGB(255, 255, 255)
  48. AU.TextSize = 25.000
  49. AU.TextWrapped = true
  50.  
  51. TextButton.Parent = Frame
  52. TextButton.AnchorPoint = Vector2.new(0, 0.5)
  53. TextButton.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  54. TextButton.Position = UDim2.new(0, 0, 0.5, 0)
  55. TextButton.Size = UDim2.new(1, 0, 0, 50)
  56. TextButton.Font = Enum.Font.FredokaOne
  57. TextButton.Text = "OFF"
  58. TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  59. TextButton.TextScaled = true
  60. TextButton.TextSize = 14.000
  61. TextButton.TextWrapped = true
  62.  
  63. UICorner_2.CornerRadius = UDim.new(0, 20)
  64. UICorner_2.Parent = TextButton
  65.  
  66. Name.Name = "Name"
  67. Name.Parent = Frame
  68. Name.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  69. Name.BackgroundTransparency = 1.000
  70. Name.Position = UDim2.new(0, 0, 0.125, 0)
  71. Name.Size = UDim2.new(0, 200, 0, 50)
  72. Name.Font = Enum.Font.FredokaOne
  73. Name.TextColor3 = Color3.fromRGB(255, 255, 255)
  74. Name.TextSize = 14.000
  75.  
  76. -- Scripts:
  77.  
  78. local function BXQXZNE_fake_script() -- TextButton.LocalScript
  79. local button = TextButton
  80. local running = false
  81.  
  82. TextButton.MouseButton1Click:Connect(function()
  83. if not running then
  84. running = true
  85. button.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  86. button.Text = "ON"
  87. else
  88. running = false
  89. button.BackgroundColor3 = Color3.new(1, 0, 0)
  90. button.Text = "OFF"
  91. end
  92. end)
  93.  
  94. while true do
  95. if running then
  96. local args = {
  97. [1] = "rep"
  98. }
  99. game:GetService("Players"):WaitForChild(Name.Text):WaitForChild("muscleEvent"):FireServer(unpack(args))
  100. end
  101. wait() -- Attendre 1 seconde avant de répéter la boucle
  102. end
  103. end
  104. coroutine.wrap(BXQXZNE_fake_script)()
  105. local function VJISD_fake_script() -- Name.LocalScript
  106. local script = Instance.new('LocalScript', Name)
  107.  
  108. local player = game:GetService("Players").LocalPlayer
  109. local label = script.Parent
  110.  
  111. label.Text = player.Name
  112. end
  113. coroutine.wrap(VJISD_fake_script)()
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement