Advertisement
Guest User

Roblox in game script

a guest
Aug 29th, 2014
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. Roblox colour name script
  2. Rules:
  3. Must have admin commands
  4. me=game.Players.LocalPlayer.Character.head; bg=Instance.new('BillboardGui',me) bg.Size=UDim2.new(0,100,0,150) bg.AlwaysOnTop=true;bg.Enabled=true; frame=Instance.new('Frame', me.BillboardGui) frame.Size=UDim2.new(0,200,0,200) frame.Position=UDim2.new(0,-50, 0,-150) frame.BackgroundTransparency=1; x=Instance.new('TextLabel',me.BillboardGui.Frame) x.Size=UDim2.new(0, 200, 0, 200) x.Position=UDim2.new(0, 0, 0, -40) x.Text = "NAME GOES HERE"x.Font = ("SourceSansBold") x.FontSize = ("Size48") x.BackgroundTransparency=1 while true do x.TextColor3 = Color3.new(math.random(),math.random(),math.random()) wait() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement