Advertisement
aidanthescriptor101

wow

Jan 10th, 2016
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. local screenGui = Instance.new("ScreenGui", game.CoreGui)
  2. screenGui.Name = "Plugin"
  3. local ph = Instance.new("TextButton",screenGui)
  4. ph.BackgroundColor3 = BrickColor.new("Really black").Color --You can change the backround.
  5. ph.BorderColor3 = BrickColor.new("White").Color --You can change the border color.
  6. ph.TextColor3 = BrickColor.new("White").Color --You can change the Text Color.
  7. ph.Size = UDim2.new(0,100,0,15) --You can change the Size. [YOU WILL NEED TO DO THIS]
  8. ph.Position = UDim2.new(0,0,0.5,150) --You can change the Position.
  9. ph.Text = "CHANGE-HERE" --This is the Gui-Button. Change to what you want.
  10. ph.FontSize = "Size12" --You can change the font size.
  11.  
  12. ph.MouseButton1Down:connect(function()
  13. for i,v in pairs(game.Workspace:GetChildren()) do
  14. if (v:IsA("BasePart")) then
  15. for _,e in pairs(Enum.NormalId:GetEnumItems()) do
  16. local d = Instance.new("Decal",v)
  17. d.Texture = "http://www.roblox.com/asset/?id=358272596" --Change the code after the "id" to your decal.
  18. d.Face = e
  19. end
  20. end
  21. end
  22. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement