Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- 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~
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local UICorner = Instance.new("UICorner")
- local TextLabel = Instance.new("TextLabel")
- local AU = Instance.new("TextLabel")
- local TextButton = Instance.new("TextButton")
- local UICorner_2 = Instance.new("UICorner")
- local Name = Instance.new("TextLabel")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- ScreenGui.ResetOnSpawn = false
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(49, 49, 49)
- Frame.Position = UDim2.new(0.131830007, 0, 0.125935167, 0)
- Frame.Size = UDim2.new(0, 200, 0, 200)
- UICorner.CornerRadius = UDim.new(0, 20)
- UICorner.Parent = Frame
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.BackgroundTransparency = 1.000
- TextLabel.Size = UDim2.new(1, 0, 0, 50)
- TextLabel.Font = Enum.Font.FredokaOne
- TextLabel.Text = "Muscle Legend V1"
- TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14.000
- TextLabel.TextWrapped = true
- AU.Name = "AU"
- AU.Parent = Frame
- AU.AnchorPoint = Vector2.new(0, 1)
- AU.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- AU.BackgroundTransparency = 1.000
- AU.Position = UDim2.new(0, 0, 1, 0)
- AU.Size = UDim2.new(1, 0, 0, 50)
- AU.Font = Enum.Font.FredokaOne
- AU.Text = "Auto Farm"
- AU.TextColor3 = Color3.fromRGB(255, 255, 255)
- AU.TextSize = 25.000
- AU.TextWrapped = true
- TextButton.Parent = Frame
- TextButton.AnchorPoint = Vector2.new(0, 0.5)
- TextButton.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
- TextButton.Position = UDim2.new(0, 0, 0.5, 0)
- TextButton.Size = UDim2.new(1, 0, 0, 50)
- TextButton.Font = Enum.Font.FredokaOne
- TextButton.Text = "OFF"
- TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextButton.TextScaled = true
- TextButton.TextSize = 14.000
- TextButton.TextWrapped = true
- UICorner_2.CornerRadius = UDim.new(0, 20)
- UICorner_2.Parent = TextButton
- Name.Name = "Name"
- Name.Parent = Frame
- Name.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Name.BackgroundTransparency = 1.000
- Name.Position = UDim2.new(0, 0, 0.125, 0)
- Name.Size = UDim2.new(0, 200, 0, 50)
- Name.Font = Enum.Font.FredokaOne
- Name.TextColor3 = Color3.fromRGB(255, 255, 255)
- Name.TextSize = 14.000
- -- Scripts:
- local function BXQXZNE_fake_script() -- TextButton.LocalScript
- local button = TextButton
- local running = false
- TextButton.MouseButton1Click:Connect(function()
- if not running then
- running = true
- button.BackgroundColor3 = Color3.new(0.333333, 1, 0)
- button.Text = "ON"
- else
- running = false
- button.BackgroundColor3 = Color3.new(1, 0, 0)
- button.Text = "OFF"
- end
- end)
- while true do
- if running then
- local args = {
- [1] = "rep"
- }
- game:GetService("Players"):WaitForChild(Name.Text):WaitForChild("muscleEvent"):FireServer(unpack(args))
- end
- wait() -- Attendre 1 seconde avant de répéter la boucle
- end
- end
- coroutine.wrap(BXQXZNE_fake_script)()
- local function VJISD_fake_script() -- Name.LocalScript
- local script = Instance.new('LocalScript', Name)
- local player = game:GetService("Players").LocalPlayer
- local label = script.Parent
- label.Text = player.Name
- end
- coroutine.wrap(VJISD_fake_script)()
Advertisement
Advertisement