-- LoW Products -- Objects local DoomGui = Instance.new("ScreenGui") local tb = Instance.new("Frame") local wd = Instance.new("Frame") local yy = Instance.new("TextButton") local gg = Instance.new("TextButton") local bb = Instance.new("TextButton") local rr = Instance.new("TextButton") local title = Instance.new("TextLabel") -- Properties DoomGui.Name = "DoomGui" DoomGui.Parent = game.CoreGui tb.Name = "tb" tb.Parent = DoomGui tb.BackgroundColor3 = Color3.new(0.0823529, 0.0784314, 0.0823529) tb.BorderSizePixel = 0 tb.Position = UDim2.new(-0, 0,0.484, 0) tb.Size = UDim2.new(0, 130, 0, 19) tb.Draggable = true wd.Name = "wd" wd.Parent = tb wd.BackgroundColor3 = Color3.new(0.176471, 0.172549, 0.176471) wd.BorderSizePixel = 0 wd.Position = UDim2.new(0, 0, 1, 0) wd.Size = UDim2.new(0, 130, 0, 114) yy.Name = "yy" yy.Parent = wd yy.BackgroundColor3 = Color3.new(0.960784, 0.803922, 0.188235) yy.BorderSizePixel = 0 yy.Position = UDim2.new(0.100000024, 0, 0.0865384638, 0) yy.Size = UDim2.new(0, 104, 0, 23) yy.Font = Enum.Font.SourceSans yy.Text = "Yellow" yy.TextColor3 = Color3.new(1, 1, 1) yy.TextScaled = true yy.TextSize = 14 yy.TextStrokeTransparency = 0.5 yy.TextWrapped = true gg.Name = "gg" gg.Parent = wd gg.BackgroundColor3 = Color3.new(0.294118, 0.592157, 0.294118) gg.BorderSizePixel = 0 gg.Position = UDim2.new(0.100000024, 0, 0.290148437, 0) gg.Size = UDim2.new(0, 104, 0, 23) gg.Font = Enum.Font.SourceSans gg.Text = "Green" gg.TextColor3 = Color3.new(1, 1, 1) gg.TextScaled = true gg.TextSize = 14 gg.TextStrokeTransparency = 0.5 gg.TextWrapped = true bb.Name = "bb" bb.Parent = wd bb.BackgroundColor3 = Color3.new(0.0509804, 0.411765, 0.67451) bb.BorderSizePixel = 0 bb.Position = UDim2.new(0.100000024, 0, 0.49375838, 0) bb.Size = UDim2.new(0, 104, 0, 23) bb.Font = Enum.Font.SourceSans bb.Text = "Blue" bb.TextColor3 = Color3.new(1, 1, 1) bb.TextScaled = true bb.TextSize = 14 bb.TextStrokeTransparency = 0.5 bb.TextWrapped = true rr.Name = "rr" rr.Parent = wd rr.BackgroundColor3 = Color3.new(0.768628, 0.156863, 0.109804) rr.BorderSizePixel = 0 rr.Position = UDim2.new(0.100000024, 0, 0.688596487, 0) rr.Size = UDim2.new(0, 104, 0, 23) rr.Font = Enum.Font.SourceSans rr.Text = "Red" rr.TextColor3 = Color3.new(1, 1, 1) rr.TextScaled = true rr.TextSize = 14 rr.TextStrokeTransparency = 0.5 rr.TextWrapped = true title.Name = "title" title.Parent = tb title.BackgroundColor3 = Color3.new(1, 1, 1) title.BackgroundTransparency = 1 title.Size = UDim2.new(0, 130, 0, 19) title.Font = Enum.Font.SourceSans title.Text = "DoomGui" title.TextColor3 = Color3.new(1, 1, 1) title.TextScaled = true title.TextSize = 14 title.TextWrapped = true -- Scripts function tp(x,y,z) local me = game.Players.LocalPlayer.Character me:MoveTo(Vector3.new(x, y, z)) end yy.MouseButton1Click:connect(function() tp(131.266, 24.799, -1.551) end) bb.MouseButton1Click:connect(function() tp(-0.413, 24.799, 131.2) end) gg.MouseButton1Click:connect(function() tp(-0.413, 24.799, -131.2) end) rr.MouseButton1Click:connect(function() tp(-131.266, 24.799, -1.551) end)