forked from retpirato/Roblox-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdopt Me - Adopt Me GUI.lua
More file actions
1 lines (1 loc) · 2.52 KB
/
Copy pathAdopt Me - Adopt Me GUI.lua
File metadata and controls
1 lines (1 loc) · 2.52 KB
1
local a=Instance.new('ScreenGui')local b=Instance.new('Frame')local c=Instance.new('TextLabel')local d=Instance.new('TextLabel')local e=Instance.new('TextButton')local f=Instance.new('TextButton')local g=Instance.new('TextLabel')a.Parent=game.CoreGui;b.Parent=a;b.BackgroundColor3=Color3.new(0.596078,0.596078,0.596078)b.BorderSizePixel=0;b.Position=UDim2.new(0.0819366872,0,0.225296468,0)b.Size=UDim2.new(0,258,0,188)c.Parent=b;c.BackgroundColor3=Color3.new(0.596078,0.596078,0.596078)c.BorderSizePixel=0;c.Size=UDim2.new(0,258,0,32)c.Font=Enum.Font.SciFi;c.FontSize=Enum.FontSize.Size14;c.Text='Adopt Me Gui'c.TextColor3=Color3.new(0,0,0)c.TextScaled=true;c.TextSize=14;c.TextWrapped=true;d.Parent=b;d.BackgroundColor3=Color3.new(0.596078,0.596078,0.596078)d.BorderSizePixel=0;d.Position=UDim2.new(0,0,0.941489339,0)d.Size=UDim2.new(0,258,0,32)d.Font=Enum.Font.SciFi;d.FontSize=Enum.FontSize.Size14;d.Text='Made By Fuzion_Sam'd.TextColor3=Color3.new(0,0,0)d.TextScaled=true;d.TextSize=14;d.TextWrapped=true;e.Name='button1'e.Parent=b;e.BackgroundColor3=Color3.new(0.490196,0.490196,0.490196)e.BorderSizePixel=0;e.Position=UDim2.new(0.112403102,0,0.212765962,0)e.Size=UDim2.new(0,200,0,50)e.Font=Enum.Font.Code;e.FontSize=Enum.FontSize.Size14;e.Text='Tp to Obby'e.TextColor3=Color3.new(0,0,0)e.TextScaled=true;e.TextSize=14;e.TextWrapped=true;f.Name='button2'f.Parent=b;f.BackgroundColor3=Color3.new(0.490196,0.490196,0.490196)f.BorderSizePixel=0;f.Position=UDim2.new(0.112403102,0,0.606382966,0)f.Size=UDim2.new(0,200,0,50)f.Font=Enum.Font.Code;f.FontSize=Enum.FontSize.Size14;f.Text='Noclip'f.TextColor3=Color3.new(0,0,0)f.TextScaled=true;f.TextSize=14;f.TextWrapped=true;g.Parent=b;g.BackgroundColor3=Color3.new(0.596078,0.596078,0.596078)g.BorderSizePixel=0;g.Position=UDim2.new(0,0,1.11170208,0)g.Size=UDim2.new(0,258,0,35)g.Font=Enum.Font.Code;g.FontSize=Enum.FontSize.Size14;g.Text='To use noclip hit X on your keyboard 'g.TextColor3=Color3.new(0,0,0)g.TextScaled=true;g.TextSize=14;g.TextWrapped=true;e.MouseButton1Click:connect(function()game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(-539,18,-1388)+Vector3.new(1,0,0)end)f.MouseButton1Click:connect(function()noclip=false;game:GetService('RunService').Stepped:connect(function()if noclip then game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)end end)plr=game.Players.LocalPlayer;mouse=plr:GetMouse()mouse.KeyDown:connect(function(h)if h=='x'then noclip=not noclip;game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)end end)print('NoClip Loaded')print('Press 'X' to noclip')end)