Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -
- Download Here --> https://tinyurl.com/rhf4x3dp (Copy and Paste Link)
- SeonixRoblox / Anti-griff gui (kick and freeze) roblox script
- This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
- --Anti-griffers gui made by Seonix in Roblox, Pastebin and GitHub --Instances: local gui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local nkick = Instance.new("TextBox") local nfreeze = Instance.new("TextBox") local kick = Instance.new("TextButton") local freeze = Instance.new("TextButton") local namelab = Instance.new("TextLabel") local madeby = Instance.new("TextLabel") --Properties: gui.Parent = game.CoreGui Frame.Parent = gui Frame.Name = "Anti-griffers frame" Frame.Size = UDim2.new(0, 217, 0, 167) Frame.Position = UDim2.new(0.781, 0, 0.732, 0) Frame.BackgroundColor3 = Color3.new(255, 228, 179) Frame.BorderSizePixel = 3 Frame.Active = true Frame.Selectable = true Frame.Draggable = true namelab.Parent = Frame namelab.Name = "Tittle" namelab.Size = UDim2.new(0, 217, 0, 37) namelab.BorderSizePixel = 3 namelab.BackgroundColor3 = Color3.new(255, 168, 105) namelab.Text = "Anti-griffers gui" namelab.Font = "Cartoon" namelab.TextScaled = true madeby.Parent = Frame madeby.Name = "Autor" madeby.Size = UDim2.new(0, 200, 0, 19) madeby.Position = UDim2.new(0.037, 0, 0.269, 0) madeby.BackgroundColor3 = Color3.new(255, 131, 69) madeby.BorderSizePixel = 2 madeby.Text = "By Seonix" madeby.Font = "ArialBold" madeby.TextSize = 14 nkick.Parent = Frame nkick.Name = "KickName" nkick.Size = UDim2.new(0, 143, 0, 37) nkick.Position = UDim2.new(0.051, 0, 0.437, 0) nkick.BorderSizePixel = 3 nkick.BackgroundColor3 = Color3.new(255, 191, 0) nkick.Text = "Nickname" nkick.Font = "Cartoon" nkick.TextSize = 27 nfreeze.Parent = Frame nfreeze.Name = "FreezeName" nfreeze.Size = UDim2.new(0, 143, 0, 37) nfreeze.Position = UDim2.new(0.051, 0, 0.707, 0) nfreeze.BorderSizePixel = 3 nfreeze.BackgroundColor3 = Color3.new(255, 191, 0) nfreeze.Text = "Nickname" nfreeze.Font = "Cartoon" nfreeze.TextSize = 27 kick.Parent = Frame kick.Name = "Kick" kick.Size = UDim2.new(0, 46, 0, 37) kick.Position = UDim2.new(0.747, 0, 0.437, 0) kick.BorderSizePixel = 3 kick.BackgroundColor3 = Color3.new(255, 119, 0) kick.Text = "Kick" kick.Font = "Cartoon" kick.TextSize = 20 freeze.Parent = Frame freeze.Name = "Freeze" freeze.Size = UDim2.new(0, 46, 0, 37) freeze.Position = UDim2.new(0.747, 0, 0.707, 0) freeze.BorderSizePixel = 3 freeze.BackgroundColor3 = Color3.new(255, 119, 0) freeze.Text = "Freeze" freeze.Font = "Cartoon" freeze.TextSize = 14 --Functions: local namek = nkick.Text local namef = nfreeze.Text kick.MouseButton1Click:Connect(function() local ooooooof = nkick.Text local plr1 = game.Players.LocalPlayer.Character local plr2 = game.Players:FindFirstChild(ooooooof) local plr22 = game.Workspace:FindFirstChild(ooooooof) plr22:Remove() plr2:Remove() end) freeze.MouseButton1Click:Connect(function() local ooooooof = nfreeze.Text local plr1 = game.Players.LocalPlayer.Character local plr2 = game.Workspace:FindFirstChild(ooooooof) plr2.HumanoidRootPart.Anchored = true end)
- rbxlscripts/268_kick_fixer
- This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Name already in use
- A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
- Sign In Required
- Please sign in to use Codespaces.
- Launching GitHub Desktop
- If nothing happens, download GitHub Desktop and try again.
- Launching GitHub Desktop
- If nothing happens, download GitHub Desktop and try again.
- Launching Xcode
- If nothing happens, download Xcode and try again.
- Launching Visual Studio Code
- Your codespace will open once ready.
- There was a problem preparing your codespace, please try again.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement