Advertisement
Haze_Roblox

Untitled

Apr 30th, 2020
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. --created by feba#8045
  2. --Issues via DM, update requests too.
  3. local player = game.Players.LocalPlayer
  4. local character = player.Character
  5. local hum = character:FindFirstChild("HumanoidRootPart")
  6.  
  7. for i, v in pairs(game.Workspace.SmallStores:GetChildren()) do
  8. if i == 1 then v.Name = "store1"
  9. elseif i == 2 then v.Name = "store2"
  10. game.Workspace.SmallStores.store1.Position = hum.Position + Vector3.new(4, 0, 0)
  11. game.Workspace.SmallStores.store2.Position = hum.Position + Vector3.new(11, 0, 0)
  12. game.Workspace.SmallStores.store2.Transparency = 1
  13. game.Workspace.SmallStores.store1.Transparency = 1
  14. game.Workspace.SmallStores.store1.CanCollide = false
  15. game.Workspace.SmallStores.store2.CanCollide = false
  16. end
  17. end
  18.  
  19. local BillboardGui = Instance.new("BillboardGui")
  20. local TextLabel = Instance.new("TextLabel")
  21. local BillboardGui2 = Instance.new("BillboardGui")
  22. local TextLabel2 = Instance.new("TextLabel")
  23. ----
  24. BillboardGui.Parent = game.Workspace.SmallStores.store1
  25. BillboardGui.AlwaysOnTop = true
  26. BillboardGui.MaxDistance = 30.000
  27. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  28. BillboardGui2.Name = "BillboardGui2"
  29. BillboardGui2.Parent = game.Workspace.SmallStores.store2
  30. BillboardGui2.AlwaysOnTop = true
  31. BillboardGui2.MaxDistance = 30.000
  32. BillboardGui2.Size = UDim2.new(0, 200, 0, 50)
  33.  
  34. TextLabel.Parent = BillboardGui
  35. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  36. TextLabel.BackgroundTransparency = 1.000
  37. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  38. TextLabel.Font = Enum.Font.GothamSemibold
  39. TextLabel.TextColor3 = Color3.fromRGB(221, 221, 221)
  40. TextLabel.Text = ""
  41. TextLabel.TextScaled = true
  42. TextLabel.TextStrokeColor3 = Color3.fromRGB(79, 79, 79)
  43. TextLabel.TextStrokeTransparency = 0.000
  44. TextLabel2.Name = "TextLabel2"
  45. TextLabel2.Parent = BillboardGui2
  46. TextLabel2.TextColor3 = Color3.fromRGB(221, 221, 221)
  47. TextLabel2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  48. TextLabel2.BackgroundTransparency = 1.000
  49. TextLabel2.Size = UDim2.new(0, 200, 0, 50)
  50. TextLabel2.Font = Enum.Font.GothamSemibold
  51. TextLabel2.Text = ""
  52. TextLabel2.TextScaled = true
  53. TextLabel2.TextStrokeColor3 = Color3.fromRGB(79, 79, 79)
  54. TextLabel2.TextStrokeTransparency = 0.000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement