Advertisement
Guest User

ROBLOX CAR SPAWNER ADMIN

a guest
Nov 25th, 2021
1,472
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local MAIN = Instance.new("Frame")
  8. local ADMIN = Instance.new("TextButton")
  9. local CARSPAWNER = Instance.new("TextButton")
  10. local PREVILLX = Instance.new("TextButton")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. MAIN.Name = "MAIN"
  18. MAIN.Parent = ScreenGui
  19. MAIN.BackgroundColor3 = Color3.fromRGB(255, 103, 83)
  20. MAIN.Position = UDim2.new(0.0334323794, 0, 0.564417183, 0)
  21. MAIN.Size = UDim2.new(0, 347, 0, 304)
  22. MAIN.Active=true
  23. MAIN.draggable+true
  24. ADMIN.Name = "ADMIN"
  25. ADMIN.Parent = MAIN
  26. ADMIN.BackgroundColor3 = Color3.fromRGB(255, 55, 55)
  27. ADMIN.Position = UDim2.new(-0.0028818443, 0, 0.296052635, 0)
  28. ADMIN.Size = UDim2.new(0, 200, 0, 50)
  29. ADMIN.Font = Enum.Font.SourceSans
  30. ADMIN.Text = "ADMIN"
  31. ADMIN.TextColor3 = Color3.fromRGB(0, 0, 0)
  32. ADMIN.TextSize = 14.000ADMIN.MouseButton1Down:connect(function()
  33. Scripthere
  34. end)
  35.  
  36.  
  37. CARSPAWNER.Name = "CAR SPAWNER"
  38. CARSPAWNER.Parent = ScreenGui
  39. CARSPAWNER.BackgroundColor3 = Color3.fromRGB(73, 152, 255)
  40. CARSPAWNER.Position = UDim2.new(0.0326894484, 0, 0.866257668, 0)
  41. CARSPAWNER.Size = UDim2.new(0, 200, 0, 50)
  42. CARSPAWNER.Font = Enum.Font.SourceSans
  43. CARSPAWNER.Text = "CAR SPAWNER"
  44. CARSPAWNER.TextColor3 = Color3.fromRGB(0, 0, 0)
  45. CARSPAWNER.TextSize = 14.000
  46. CARSPAWNER.MouseButton1Down:connect(function()
  47. Scripthere
  48. end)
  49.  
  50. PREVILLX.Name = "PREVILL X"
  51. PREVILLX.Parent = ScreenGui
  52. PREVILLX.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  53. PREVILLX.Position = UDim2.new(0.0326894484, 0, 0.777914107, 0)
  54. PREVILLX.Size = UDim2.new(0, 200, 0, 50)
  55. PREVILLX.Font = Enum.Font.SourceSans
  56. PREVILLX.Text = "PREVILL X"
  57. PREVILLX.TextColor3 = Color3.fromRGB(0, 0, 0)
  58. PREVILLX.TextSize = 14.000PREVILLX.MouseButton1Down:connect(function()
  59. Scripthere
  60. end)
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement