· 5 years ago · Dec 12, 2020, 02:04 PM
1local SkywarsGui = Instance.new("ScreenGui")
2local GuiFrame = Instance.new("Frame")
3local MegaVip = Instance.new("TextButton")
4local VIP = Instance.new("TextButton")
5local Shop = Instance.new("TextButton")
6local TextLabel = Instance.new("TextLabel")
7local KeybindNotice = Instance.new("TextLabel")
8--Properties:
9SkywarsGui.Name = "Skywars Gui"
10SkywarsGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
11
12GuiFrame.Name = "Gui Frame"
13GuiFrame.Parent = SkywarsGui
14GuiFrame.BackgroundColor3 = Color3.new(0.890196, 0, 0)
15GuiFrame.BorderColor3 = Color3.new(0, 0, 0)
16GuiFrame.Position = UDim2.new(0.428498209, 0, 0.322580665, 0)
17GuiFrame.Size = UDim2.new(0, 187, 0, 187)
18
19MegaVip.Name = "MegaVip"
20MegaVip.Parent = GuiFrame
21MegaVip.BackgroundColor3 = Color3.new(0, 0, 0)
22MegaVip.BorderColor3 = Color3.new(0, 0, 0)
23MegaVip.Position = UDim2.new(0.0427807495, 0, 0.229946524, 0)
24MegaVip.Size = UDim2.new(0, 80, 0, 40)
25MegaVip.Font = Enum.Font.Fantasy
26MegaVip.Text = "MegaVip TP"
27MegaVip.TextColor3 = Color3.new(1, 0, 0)
28MegaVip.TextSize = 14
29
30VIP.Name = "VIP"
31VIP.Parent = GuiFrame
32VIP.BackgroundColor3 = Color3.new(0, 0, 0)
33VIP.BorderColor3 = Color3.new(0, 0, 0)
34VIP.Position = UDim2.new(0.524064183, 0, 0.229946524, 0)
35VIP.Size = UDim2.new(0, 84, 0, 40)
36VIP.Font = Enum.Font.Fantasy
37VIP.Text = "VIP TP"
38VIP.TextColor3 = Color3.new(1, 0, 0)
39VIP.TextSize = 14
40
41Shop.Name = "Shop"
42Shop.Parent = GuiFrame
43Shop.BackgroundColor3 = Color3.new(0, 0, 0)
44Shop.BorderColor3 = Color3.new(0, 0, 0)
45Shop.Position = UDim2.new(0.28342247, 0, 0.550802171, 0)
46Shop.Size = UDim2.new(0, 80, 0, 40)
47Shop.Font = Enum.Font.Fantasy
48Shop.Text = "Shop TP"
49Shop.TextColor3 = Color3.new(1, 0, 0)
50Shop.TextSize = 14
51
52TextLabel.Parent = GuiFrame
53TextLabel.BackgroundColor3 = Color3.new(0.890196, 0, 0)
54TextLabel.BorderColor3 = Color3.new(0.890196, 0, 0)
55TextLabel.Position = UDim2.new(0.0106951874, 0, 0.0320855603, 0)
56TextLabel.Size = UDim2.new(0, 182, 0, 37)
57TextLabel.Font = Enum.Font.Fantasy
58TextLabel.Text = "UniGui for SkyWars"
59TextLabel.TextColor3 = Color3.new(0, 0, 0)
60TextLabel.TextSize = 20
61
62KeybindNotice.Name = "KeybindNotice"
63KeybindNotice.Parent = GuiFrame
64KeybindNotice.BackgroundColor3 = Color3.new(0.890196, 0, 0)
65KeybindNotice.BorderColor3 = Color3.new(0.890196, 0, 0)
66KeybindNotice.Position = UDim2.new(0.0106951874, 0, 0.764705896, 0)
67KeybindNotice.Size = UDim2.new(0, 180, 0, 37)
68KeybindNotice.Font = Enum.Font.Fantasy
69KeybindNotice.Text = "Press \"P\" to toggle GUI"
70KeybindNotice.TextColor3 = Color3.new(0, 0, 0)
71KeybindNotice.TextSize = 18
72
73plr = game.Players.LocalPlayer:GetMouse()
74mouse = plr.KeyDown:connect(function(key)
75if key == "p" then
76if GuiFrame.Visible == true then
77 GuiFrame.Visible = false
78else
79 GuiFrame.Visible = true
80end
81end
82end)
83GuiFrame.Active = true
84GuiFrame.Draggable = true
85
86-- Scripts:
87hum = game.Players.LocalPlayer.Character.HumanoidRootPart
88MegaVip.MouseButton1Click:Connect(function()
89 hum.CFrame = CFrame.new(Vector3.new(-0.993, 263.9663, 68.752))
90end)
91VIP.MouseButton1Click:Connect(function()
92 hum.CFrame = CFrame.new(Vector3.new(0.023, 264, -69.449))
93end)
94Shop.MouseButton1Click:Connect(function()
95 hum.CFrame = CFrame.new(Vector3.new(87, 264, -1))
96end)
97
98print("Thanks for using UniGui for skywars by TheUniCoder :D")
99RAW Paste Data
100-- made by TheUniCoder
101-- Instances:
102local SkywarsGui = Instance.new("ScreenGui")
103local GuiFrame = Instance.new("Frame")
104local MegaVip = Instance.new("TextButton")
105local VIP = Instance.new("TextButton")
106local Shop = Instance.new("TextButton")
107local TextLabel = Instance.new("TextLabel")
108local KeybindNotice = Instance.new("TextLabel")
109--Properties:
110SkywarsGui.Name = "Skywars Gui"
111SkywarsGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
112
113GuiFrame.Name = "Gui Frame"
114GuiFrame.Parent = SkywarsGui
115GuiFrame.BackgroundColor3 = Color3.new(0.890196, 0, 0)
116GuiFrame.BorderColor3 = Color3.new(0, 0, 0)
117GuiFrame.Position = UDim2.new(0.428498209, 0, 0.322580665, 0)
118GuiFrame.Size = UDim2.new(0, 187, 0, 187)
119
120MegaVip.Name = "MegaVip"
121MegaVip.Parent = GuiFrame
122MegaVip.BackgroundColor3 = Color3.new(0, 0, 0)
123MegaVip.BorderColor3 = Color3.new(0, 0, 0)
124MegaVip.Position = UDim2.new(0.0427807495, 0, 0.229946524, 0)
125MegaVip.Size = UDim2.new(0, 80, 0, 40)
126MegaVip.Font = Enum.Font.Fantasy
127MegaVip.Text = "MegaVip TP"
128MegaVip.TextColor3 = Color3.new(1, 0, 0)
129MegaVip.TextSize = 14
130
131VIP.Name = "VIP"
132VIP.Parent = GuiFrame
133VIP.BackgroundColor3 = Color3.new(0, 0, 0)
134VIP.BorderColor3 = Color3.new(0, 0, 0)
135VIP.Position = UDim2.new(0.524064183, 0, 0.229946524, 0)
136VIP.Size = UDim2.new(0, 84, 0, 40)
137VIP.Font = Enum.Font.Fantasy
138VIP.Text = "VIP TP"
139VIP.TextColor3 = Color3.new(1, 0, 0)
140VIP.TextSize = 14
141
142Shop.Name = "Shop"
143Shop.Parent = GuiFrame
144Shop.BackgroundColor3 = Color3.new(0, 0, 0)
145Shop.BorderColor3 = Color3.new(0, 0, 0)
146Shop.Position = UDim2.new(0.28342247, 0, 0.550802171, 0)
147Shop.Size = UDim2.new(0, 80, 0, 40)
148Shop.Font = Enum.Font.Fantasy
149Shop.Text = "Shop TP"
150Shop.TextColor3 = Color3.new(1, 0, 0)
151Shop.TextSize = 14
152
153TextLabel.Parent = GuiFrame
154TextLabel.BackgroundColor3 = Color3.new(0.890196, 0, 0)
155TextLabel.BorderColor3 = Color3.new(0.890196, 0, 0)
156TextLabel.Position = UDim2.new(0.0106951874, 0, 0.0320855603, 0)
157TextLabel.Size = UDim2.new(0, 182, 0, 37)
158TextLabel.Font = Enum.Font.Fantasy
159TextLabel.Text = "UniGui for SkyWars"
160TextLabel.TextColor3 = Color3.new(0, 0, 0)
161TextLabel.TextSize = 20
162
163KeybindNotice.Name = "KeybindNotice"
164KeybindNotice.Parent = GuiFrame
165KeybindNotice.BackgroundColor3 = Color3.new(0.890196, 0, 0)
166KeybindNotice.BorderColor3 = Color3.new(0.890196, 0, 0)
167KeybindNotice.Position = UDim2.new(0.0106951874, 0, 0.764705896, 0)
168KeybindNotice.Size = UDim2.new(0, 180, 0, 37)
169KeybindNotice.Font = Enum.Font.Fantasy
170KeybindNotice.Text = "Press \"P\" to toggle GUI"
171KeybindNotice.TextColor3 = Color3.new(0, 0, 0)
172KeybindNotice.TextSize = 18
173
174plr = game.Players.LocalPlayer:GetMouse()
175mouse = plr.KeyDown:connect(function(key)
176if key == "p" then
177if GuiFrame.Visible == true then
178 GuiFrame.Visible = false
179else
180 GuiFrame.Visible = true
181end
182end
183end)
184GuiFrame.Active = true
185GuiFrame.Draggable = true
186
187-- Scripts:
188hum = game.Players.LocalPlayer.Character.HumanoidRootPart
189MegaVip.MouseButton1Click:Connect(function()
190 hum.CFrame = CFrame.new(Vector3.new(-0.993, 263.9663, 68.752))
191end)
192VIP.MouseButton1Click:Connect(function()
193 hum.CFrame = CFrame.new(Vector3.new(0.023, 264, -69.449))
194end)
195Shop.MouseButton1Click:Connect(function()
196 hum.CFrame = CFrame.new(Vector3.new(87, 264, -1))
197end)
198
199print("Thanks for using UniGui for skywars by TheUniCoder :D")
200Public Pastes
201Advent of Code 2020 Day 12
202Haskell | 11 min ago
203Building
204C# | 18 min ago
205Untitled
206Lua | 28 min ago
207server dump
208Lua | 35 min ago
209Cozma 2
210C++ | 42 min ago
211Примеры ветвлений в Паскале
212Pascal | 43 min ago
213Примеры простых циклов в Паскале
214Pascal | 45 min ago
215Работа с циклами
216Pascal | 48 min ago
217create new paste / syntax languages / archive / faq / tools / night mode / api / scraping api
218privacy statement / cookies policy / terms of serviceupdated / security disclosure / dmca / report abuse / contact
219
220By using Pastebin.com you agree to our cookies policy to enhance your experience.
221Site design & logo © 2020 Pastebin
222
223