Advertisement
scriptingtales

HighLightRoblox

Jan 1st, 2023 (edited)
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Tahiktis = Instance.new("TextButton")
  8. local UICorner = Instance.new("UICorner")
  9.  
  10. --Properties:
  11.  
  12. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. Tahiktis.Name = "Tahiktis"
  16. Tahiktis.Parent = ScreenGui
  17. Tahiktis.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  18. Tahiktis.Position = UDim2.new(0, 0, 0.490410954, 0)
  19. Tahiktis.Size = UDim2.new(0, 181, 0, 52)
  20. Tahiktis.Font = Enum.Font.SourceSansLight
  21. Tahiktis.Text = "SumHighlight"
  22. Tahiktis.TextColor3 = Color3.fromRGB(0, 0, 0)
  23. Tahiktis.TextScaled = true
  24. Tahiktis.TextSize = 14.000
  25. Tahiktis.TextWrapped = true
  26.  
  27. UICorner.Parent = Tahiktis
  28.  
  29. -- Scripts:
  30.  
  31. local function WJEO_fake_script() -- Tahiktis.LocalScript
  32. local script = Instance.new('LocalScript', Tahiktis)
  33.  
  34. script.Parent.MouseButton1Click:Connect(function()
  35. local localplayer = game.Workspace.Mearshev
  36. Instance.new("Highlight", localplayer)
  37. end)
  38. end
  39. coroutine.wrap(WJEO_fake_script)()
  40.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement