Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Gui = Instance.new("Frame")
- local TextButton = Instance.new("TextButton")
- local TextLabel = Instance.new("TextLabel")
- local TextButton_2 = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- Gui.Name = "Gui"
- Gui.Parent = ScreenGui
- Gui.BackgroundColor3 = Color3.fromRGB(97, 97, 97)
- Gui.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Gui.BorderSizePixel = 0
- Gui.Position = UDim2.new(0.0329187997, 0, 0.464516133, 0)
- Gui.Size = UDim2.new(0, 457, 0, 267)
- TextButton.Parent = Gui
- TextButton.BackgroundColor3 = Color3.fromRGB(58, 58, 58)
- TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextButton.BorderSizePixel = 0
- TextButton.Position = UDim2.new(0.0251434799, 0, 0.22921741, 0)
- TextButton.Size = UDim2.new(0, 120, 0, 50)
- TextButton.Font = Enum.Font.FredokaOne
- TextButton.Text = "BLOCK"
- TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton.TextSize = 14.000
- TextLabel.Parent = Gui
- TextLabel.BackgroundColor3 = Color3.fromRGB(58, 58, 58)
- TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.BorderSizePixel = 0
- TextLabel.Position = UDim2.new(0, 0, -0.00364862219, 0)
- TextLabel.Size = UDim2.new(0, 456, 0, 50)
- TextLabel.Font = Enum.Font.FredokaOne
- TextLabel.Text = "FE GUI"
- TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.TextSize = 33.000
- TextButton_2.Parent = Gui
- TextButton_2.BackgroundColor3 = Color3.fromRGB(58, 58, 58)
- TextButton_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextButton_2.BorderSizePixel = 0
- TextButton_2.Position = UDim2.new(0.300854653, 0, 0.22921741, 0)
- TextButton_2.Size = UDim2.new(0, 120, 0, 50)
- TextButton_2.Font = Enum.Font.FredokaOne
- TextButton_2.Text = "BLOCK"
- TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton_2.TextSize = 14.000
- -- Scripts:
- local function CFKD_fake_script() -- Gui.Dragify
- local script = Instance.new('LocalScript', Gui)
- script.Parent.Active = true
- script.Parent.Draggable = true
- end
- coroutine.wrap(CFKD_fake_script)()
- local function DAJFSO_fake_script() -- TextButton.Script
- local script = Instance.new('Script', TextButton)
- local button = script.Parent
- local function OnClick()
- local startTime = tick() -- Enregistrez le temps de début
- while tick() - startTime < 5 do -- Continuez pendant 2 secondes
- local Part = Instance.new("Part")
- Part.Size = Vector3.new(2, 2, 2)
- Part.Anchored = false
- Part.CFrame = game.Players.LocalPlayer.Character.Head.CFrame
- Part.Parent = game.Workspace
- wait(0.001)
- end
- end
- button.MouseButton1Click:Connect(OnClick)
- end
- coroutine.wrap(DAJFSO_fake_script)()
- local function LHNYNQ_fake_script() -- TextButton_2.Script
- local script = Instance.new('Script', TextButton_2)
- local button = script.Parent
- local Players = game.Players
- local playerHead = game.Players.LocalPlayer.Character.Head
- local function OnClick()
- for _, player in pairs(Players:GetPlayers()) do
- game.Chat:Chat(playerHead,'I HATE BLACK NIGGER')
- end
- end
- button.MouseButton1Click:Connect(OnClick)
- end
- coroutine.wrap(LHNYNQ_fake_script)()
Add Comment
Please, Sign In to add comment