View difference between Paste ID: 9dizgP56 and W97Bqhcw
SHOW: | | - or go back to the newest paste.
1-
--Rocky2u admin - fixed by Autumn (thanks <3), updated for Raindrop by 3dsboy08
1+
Gui = Instance.new("ScreenGui", game.CoreGui)
2-
2+
Button = Instance.new("TextButton", Gui)
3-
--[[
3+
Button.Size = UDim2.new(0, 100, 0, 40)
4-
  ____            _          ____        _        ____ __  __ ____      
4+
Button.BackgroundTransparency = 0.7
5-
 |  _ \ ___   ___| | ___   _|___ \ _   _( )___   / ___|  \/  |  _ \ ___ 
5+
Button.Position = UDim2.new(0.003, 0, 0.93, 0)
6-
 | |_) / _ \ / __| |/ / | | | __) | | | |// __| | |   | |\/| | | | / __|
6+
Button.Text = "Enable Noclip"
7-
 |  _ < (_) | (__|   <| |_| |/ __/| |_| | \__ \ | |___| |  | | |_| \__ \
7+
Button.TextColor3 = Color3.new(255, 255, 255)
8-
 |_| \_\___/ \___|_|\_\\__, |_____|\__,_| |___/  \____|_|  |_|____/|___/
8+
noclip = false
9-
                       |___/                                            
9+
10-
--]]
10+
if noclip then
11-
11+
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
12-
local ADMINS = {}
12+
13-
local BANS = {}
13+
14-
14+
Button.MouseButton1Down:connect(function()
15-
function _G.ADD_ADMIN(ID) table.insert(ADMINS, ID) end
15+
noclip = not noclip
16-
function _G.ADD_BAN(ID) table.insert(BANS, ID) end
16+
if Button.Text == "Enable Noclip" then
17-
17+
    Button.Text = "Disable Noclip"
18-
local VERSION = '1.8.0'
18+
else
19-
local UPDATED = '3/15/2017'
19+
    Button.Text = "Enable Noclip"
20-
local CHANGELOG = {
20+
21-
	' * updated ;nolimbs',
21+
end)