Advertisement
Guest User

er

a guest
Jul 4th, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. --//AUTOMATED GUI TRANSLATOR CODE\\\\--
  2.  
  3. local Create=function(ClassName,Properties)
  4. local Instance=Instance.new(ClassName)
  5. local Properties=Properties or {}
  6. local Connections={'DragBegin','DragStopped','InputBegan','InputChanged','InputEnded','MouseEnter','MouseLeave','MouseMoved','MouseWheelBackward','MouseWheelForward','TouchLongPress','TouchPan','TouchPinch','TouchRotate','TouchSwipe','TouchTap','AncestryChanged','Changed','ChildAdded','ChildRemoved','DescendantAdded','DescendantRemoving','MouseButton1Click','MouseButton1Up','MouseButton1Down','MouseButton2Click','MouseButton2Down','MouseButton2Up'}
  7. local check=function(Index)
  8. table.foreach(Connections,function(_,Conn)
  9. if tostring(Index)==Conn then
  10. return false
  11. else
  12. return true
  13. end
  14. end)
  15. end
  16. table.foreach(Properties,function(Index,Value)
  17. if not check(Index) then
  18. Instance[Index]=Value
  19. else
  20. Instance[Index]:connect(Value)
  21. end
  22. end)
  23. end
  24.  
  25.  
  26.  
  27. Create('ScreenGui',{
  28. Name='ScreenGui',
  29. Parent=game:service'StarterGui',
  30. Archivable=true,
  31. })
  32.  
  33. Create('TextLabel',{
  34. Visible=true,
  35. FontSize=Enum.FontSize.Size24,
  36. Position=UDim2.new(0,0,0,0),
  37. Active=false,
  38. Parent=game:service'StarterGui'.ScreenGui,
  39. TextXAlignment=Enum.TextXAlignment.Center,
  40. TextWrapped=true,
  41. TextStrokeTransparency=1,
  42. TextTransparency=0,
  43. TextStrokeColor3=Color3.new(0/255,0/255,0/255),
  44. Name='TextLabel',
  45. TextColor3=Color3.new(255/255,255/255,255/255),
  46. SizeConstraint=Enum.SizeConstraint.RelativeXY,
  47. ZIndex=1,
  48. BorderSizePixel=0,
  49. Size=UDim2.new(1,0,0,50),
  50. Draggable=false,
  51. ClipsDescendants=false,
  52. BorderColor3=Color3.new(27.000002190471/255,42.000001296401/255,53.000004440546/255),
  53. Text='FIREFUME WAS HERE',
  54. Rotation=0,
  55. Font=Enum.Font.SourceSansBold,
  56. BackgroundTransparency=0.69999998807907,
  57. Archivable=true,
  58. TextYAlignment=Enum.TextYAlignment.Center,
  59. TextScaled=true,
  60. BackgroundColor3=Color3.new(0/255,0/255,0/255),
  61. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement