BinaricHi

Untitled

Apr 7th, 2024
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.56 KB | None | 0 0
  1. local gui = Instance.new("ScreenGui")
  2. gui.Name = "Cve0ch Gui v1"
  3. gui.Parent = game.CoreGui
  4.  
  5. local Frame = Instance.new("Frame")
  6. Frame.Size = UDim2.new(0.35, 0, 0.8, 0)
  7. Frame.Position = UDim2.new(0.5, 0, 0.5, 0)
  8. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  9. Frame.BorderColor3 = Color3.fromRGB(213, 115, 61) -- Orange
  10. Frame.BorderSizePixel = 3
  11. Frame.Active = true
  12. Frame.Draggable = true
  13. Frame.Parent = gui
  14.  
  15. local ImageLabel = Instance.new("ImageLabel")
  16. ImageLabel.Parent = Frame
  17. ImageLabel.BackgroundColor3 = Color3.fromRGB(0, 0 ,0)
  18. ImageLabel.BorderColor3 = Color3.fromRGB(27, 27, 27)
  19. ImageLabel.BackgroundTransparency = 0
  20. ImageLabel.BorderSizePixel = 0
  21. ImageLabel.Position = UDim2.new(0.0001, 0, 0.0001, 0)
  22. ImageLabel.Size = UDim2.new(0.885, 35, 0.83, 54)
  23. ImageLabel.Image = "http://www.roblox.com/asset/?id=17054635992" -- Updated Background image ID
  24. ImageLabel.Active = false
  25.  
  26. local TextLabel = Instance.new("TextLabel")
  27. TextLabel.Size = UDim2.new(0.33, 0, 0.1, 0)
  28. TextLabel.Position = UDim2.new(0.33, 0, 0.00001, 0)
  29. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  30. TextLabel.BorderColor3 = Color3.new(0, 0, 0)
  31. TextLabel.BorderSizePixel = 0
  32. TextLabel.BackgroundTransparency = 1
  33. TextLabel.Text = "Cve0ch Gui"
  34. TextLabel.TextSize = 29
  35. TextLabel.TextColor3 = Color3.new(255, 255, 255)
  36. TextLabel.Font = Enum.Font.Code
  37. TextLabel.Parent = Frame
  38.  
  39. local function createButton(text, position, onClick, id)
  40. local TextButton = Instance.new("TextButton")
  41. TextButton.Size = UDim2.new(0.3, 0, 0.2, 0)
  42. TextButton.Position = position
  43. TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
  44. TextButton.BorderColor3 = Color3.fromRGB(213, 115, 61) -- Orange
  45. TextButton.BorderSizePixel = 2
  46. TextButton.BackgroundTransparency = 0.66
  47. TextButton.Text = text
  48. TextButton.TextSize = 23
  49. TextButton.TextWrapped = true
  50. TextButton.TextColor3 = Color3.new(255, 255, 255)
  51. TextButton.Font = Enum.Font.Code
  52. TextButton.Parent = Frame
  53. TextButton.MouseButton1Click:Connect(function()
  54. onClick(id)
  55. end)
  56. end
  57.  
  58. createButton("Sky", UDim2.new(0.00001, 0, 0.2, 0), function(ID)
  59. local skybox = true
  60.  
  61. if skybox == true then
  62. local sky = Instance.new("Sky")
  63. sky.Parent = game.Lighting
  64. sky.SkyboxBk = "http://www.roblox.com/asset/?id=" .. ID
  65. sky.SkyboxDn = "http://www.roblox.com/asset/?id=" .. ID
  66. sky.SkyboxFt = "http://www.roblox.com/asset/?id=" .. ID
  67. sky.SkyboxLf = "http://www.roblox.com/asset/?id=" .. ID
  68. sky.SkyboxRt = "http://www.roblox.com/asset/?id=" .. ID
  69. sky.SkyboxUp = "http://www.roblox.com/asset/?id=" .. ID
  70. end
  71. end, 17054635992)
  72.  
  73. createButton("Particle", UDim2.new(0.7, 0, 0.2, 0), function(ID)
  74. local particle = true
  75.  
  76. if particle == true then
  77. for i,v in pairs(game.Workspace:GetChildren()) do
  78. if v:IsA("Part") then
  79. local particle = Instance.new("ParticleEmitter")
  80. particle.Texture = "http://www.roblox.com/asset/?id=" .. ID
  81. particle.Parent = v
  82. particle.Rate = 200
  83. elseif v:IsA("Model") then
  84. for _, part in pairs(v:GetDescendants()) do
  85. if part:IsA("Part") then
  86. local particle = Instance.new("ParticleEmitter")
  87. particle.Texture = "http://www.roblox.com/asset/?id=" .. ID
  88. particle.Parent = part
  89. particle.Rate = 200
  90. end
  91. end
  92. end
  93. end
  94. end
  95. end, 17054635992)
  96.  
Advertisement
Add Comment
Please, Sign In to add comment