Advertisement
mistervock

robloxscript

Dec 16th, 2022 (edited)
926
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.24 KB | Source Code | 1 0
  1. local Workspace = game:GetService("Workspace")
  2. local CoreGui = game:GetService("CoreGui")
  3. local Players = game:GetService("Players")
  4. local Noclip = Instance.new("ScreenGui")
  5. local BG = Instance.new("Frame")
  6. local Title = Instance.new("TextLabel")
  7. local Toggle = Instance.new("TextButton")
  8. local StatusPF = Instance.new("TextLabel")
  9. local Status = Instance.new("TextLabel")
  10. local Credit = Instance.new("TextLabel")
  11. local Plr = Players.LocalPlayer
  12. local Clipon = false
  13.  
  14. Noclip.Name = "Scriptkey"
  15. Noclip.Parent = game.CoreGui
  16.  
  17. BG.Name = "BG"
  18. BG.Parent = Noclip
  19. BG.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  20. BG.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  21. BG.BorderSizePixel = 2
  22. BG.Position = UDim2.new(0.149479166, 0, 0.82087779, 0)
  23. BG.Size = UDim2.new(0, 210, 0, 127)
  24. BG.Active = true
  25. BG.Draggable = true
  26.  
  27. Title.Name = "Doors script"
  28. Title.Parent = BG
  29. Title.BackgroundColor3 = Color3.new(0.266667, 0.00392157, 0.627451)
  30. Title.BorderColor3 = Color3.new(0.180392, 0, 0.431373)
  31. Title.BorderSizePixel = 2
  32. Title.Size = UDim2.new(0, 210, 0, 33)
  33. Title.Font = Enum.Font.Highway
  34. Title.Text = "Noclip"
  35. Title.TextColor3 = Color3.new(1, 1, 1)
  36. Title.FontSize = Enum.FontSize.Size32
  37. Title.TextSize = 30
  38. Title.TextStrokeColor3 = Color3.new(0.180392, 0, 0.431373)
  39. Title.TextStrokeTransparency = 0
  40.  
  41. Toggle.Parent = BG
  42. Toggle.BackgroundColor3 = Color3.new(0.266667, 0.00392157, 0.627451)
  43. Toggle.BorderColor3 = Color3.new(0.180392, 0, 0.431373)
  44. Toggle.BorderSizePixel = 2
  45. Toggle.Position = UDim2.new(0.152380958, 0, 0.374192119, 0)
  46. Toggle.Size = UDim2.new(0, 146, 0, 36)
  47. Toggle.Font = Enum.Font.Highway
  48. Toggle.FontSize = Enum.FontSize.Size28
  49. Toggle.Text = "Doors script Key_mZUjim6kXqCkmid0c9pXH4jEqfk7F6PebRrmOTzd"
  50. Toggle.TextColor3 = Color3.new(1, 1, 1)
  51. Toggle.TextSize = 25
  52. Toggle.TextStrokeColor3 = Color3.new(0.180392, 0, 0.431373)
  53. Toggle.TextStrokeTransparency = 0
  54.  
  55. StatusPF.Name = "StatusPF"
  56. StatusPF.Parent = BG
  57. StatusPF.BackgroundColor3 = Color3.new(1, 1, 1)
  58. StatusPF.BackgroundTransparency = 1
  59. StatusPF.Position = UDim2.new(0.314285725, 0, 0.708661377, 0)
  60. StatusPF.Size = UDim2.new(0, 56, 0, 20)
  61. StatusPF.Font = Enum.Font.Highway
  62. StatusPF.FontSize = Enum.FontSize.Size24
  63. StatusPF.Text = "Key:"
  64. StatusPF.TextColor3 = Color3.new(1, 1, 1)
  65. StatusPF.TextSize = 20
  66. StatusPF.TextStrokeColor3 = Color3.new(0.333333, 0.333333, 0.333333)
  67. StatusPF.TextStrokeTransparency = 0
  68. StatusPF.TextWrapped = true
  69.  
  70. Credit.Name = "Credit"
  71. Credit.Parent = BG
  72. Credit.BackgroundColor3 = Color3.new(1, 1, 1)
  73. Credit.BackgroundTransparency = 1
  74. Credit.Position = UDim2.new(0.195238099, 0, 0.866141737, 0)
  75. Credit.Size = UDim2.new(0, 128, 0, 17)
  76. Credit.Font = Enum.Font.SourceSans
  77. Credit.FontSize = Enum.FontSize.Size18
  78. Credit.Text = "Created by Mistervock"
  79. Credit.TextColor3 = Color3.new(1, 1, 1)
  80. Credit.TextSize = 16
  81. Credit.TextStrokeColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  82. Credit.TextStrokeTransparency = 0
  83. Credit.TextWrapped = true
  84.  
  85. script.Parent.MouseButton1Click:Connect(function()
  86.  
  87.     script.Parent.Visible = false
  88.     script.Parent.Parent.Frame.Visible = true
  89.  
  90. end)
  91.  
  92. script.parent.MouseButton1Click:Connect(function()
  93.    
  94.     script.Parent.Parent.Visible = false
  95.     script.Parent.Parent.Parent.TextButton.Visible = true
  96.  
  97. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement