Advertisement
Guest User

Untitled

a guest
Oct 20th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. -- Objects
  2.  
  3. local NOctuGui = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local Title = Instance.new("TextLabel")
  6. local SpawnKniff = Instance.new("TextButton")
  7.  
  8. -- Properties
  9.  
  10. NOctuGui.Name = "NOctuGui"
  11. NOctuGui.Parent = game.Players.LocalPlayer.PlayerGui
  12.  
  13. Main.Name = "Main"
  14. Main.Parent = NOctuGui
  15. Main.BackgroundColor3 = Color3.new(0.192157, 0.192157, 0.192157)
  16. Main.BackgroundTransparency = 0.20000000298023
  17. Main.Position = UDim2.new(0, 0, 0.407862395, 0)
  18. Main.Selectable = true
  19. Main.Size = UDim2.new(0, 301, 0, 161)
  20.  
  21. JumpPower.MouseButton1Click:connect(function()
  22.  
  23. Instance.new("Smoke", game.Players.LocalPlayer.Character.Torso)
  24.  
  25. end)
  26.  
  27. Title.Name = "Title"
  28. Title.Parent = Main
  29. Title.BackgroundColor3 = Color3.new(0.207843, 0.207843, 0.207843)
  30. Title.BackgroundTransparency = 0.5
  31. Title.Size = UDim2.new(0, 301, 0, 35)
  32. Title.Font = Enum.Font.SourceSans
  33. Title.Text = "NOctuGui"
  34. Title.TextColor3 = Color3.new(0, 0, 0)
  35. Title.TextSize = 40
  36.  
  37. SpawnKniff.Name = "SpawnKniff"
  38. SpawnKniff.Parent = Main
  39. SpawnKniff.BackgroundColor3 = Color3.new(0.188235, 0.188235, 0.188235)
  40. SpawnKniff.BackgroundTransparency = 0.5
  41. SpawnKniff.Position = UDim2.new(0, 0, 0.310559005, 0)
  42. SpawnKniff.Size = UDim2.new(0, 110, 0, 35)
  43. SpawnKniff.Font = Enum.Font.SciFi
  44. SpawnKniff.Text = "Give Kniff"
  45. SpawnKniff.TextColor3 = Color3.new(0, 0, 0)
  46. SpawnKniff.TextScaled = true
  47. SpawnKniff.TextSize = 30
  48. SpawnKniff.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement