vince
Move NPC between two points like a patrol
Make an NPC [with Humanoid inside] named Giraffe patrol between two objects named GreenFlag and PurpleFlag. Note the line that says humanoid.MoveToFinished:Wait() - this pauses the script till the ...
Move NPC to a point
Move an NPC named Giraffe to an object named GreenFlag Workspace/Script ```ruby local giraffe = game.Workspace.Giraffe local humanoid = giraffe.Humanoid local pointA = game.Workspace.GreenFlag huma...
Clone Objects
Workspace/Script ```ruby local object = game.Workspace.PartToClone local clonedObject = object:Clone() clonedObject.Parent = game.Workspace clonedObject.Position = Vector3.new(5,0.5,5) clonedObject...
Damage or Heal player when player touches something
Workspace/Part/Script ```ruby local brick = script.Parent local function Touched(Part) if Part.Parent:FindFirstChild("Humanoid") then Part.Parent.Humanoid:TakeDamage(10) end end br...
Play sound when Tool is activated
If you have a tool named "Shield" in StarterPack and a sound named "Sound" under "Shield" StarterPack/Shield/Script ```ruby local Tool = script.Parent local function toolUsed() Tool.Sound:Play...
Make Player Jump Higher when tool equipped
If you have a tool named "Shield" in StarterPack StarterPack/Shield/Script ```ruby local tool = script.Parent local lastCharacter = nil local function onEquipped() local character = tool.Parent...
Make Player Run when tool equipped
If you have a tool named "Shield" in StarterPack StarterPack/Shield/Script ```ruby local tool = script.Parent local lastCharacter = nil local function onEquipped() local character = tool.Parent...
Do something when Tool is equipped or unequipped
If you have a tool named "Shield" in StarterPack StarterPack/Shield/Script ```ruby local Tool = script.Parent local function toolEquipped() print("Tool Equipped") end Tool.Equipped:Connect(tool...
Do something when mouse clicked while Tool is activated
If you have a tool named "Shield" in StarterPack StarterPack/Shield/Script ```ruby local Tool = script.Parent local function toolUsed() print("Tool Used") end Tool.Activated:Connect(toolUsed) ```
Add Text to Part
Add Part Add SurfaceGui to (1) Add TextLabel to (2) https://www.youtube.com/watch?v=agcoEoch2A0
Set or Edit Time of Day
Workspace/Script ruby local minutesAfterMidnight = 7*60 -- 7AM game.Lighting:SetMinutesAfterMidnight(minutesAfterMidnight) To increase TimeOfDay by 60 mins each time you click on a Part Add ClickD...
Click to Pickup map
Add A tool called "Map" to ServerStorage Add a part called "PickupButton" to Workspace Add ClickDetector to PickupButton Add Script to PickupButton Workspace/PickupButton/Script ```ruby local Tool ...
Teleport
Add two parts and name them "Tele1" and "Tele2". Add the following code to "Tele1" /Tele1/Script ```ruby local function onTouch(part) if part.Parent:FindFirstChild("Humanoid") then part...
CA Covid assistance
For $650 to $1000 per week Go to https://www.edd.ca.gov Click on COVID resources Find PUA - https://www.edd.ca.gov/about_edd/coronavirus-2019/pandemic-unemployment-assistance.htm Create online acco...
Make Your Book Free on Amazon’s KDP
To make your book free on Amazon permanently make sure it’s not in KDP Select publish it for sale on as many other distributors as possible. These days, Amazon requires more than one most of the ti...
Publish eBook
See chart at https://kdp.amazon.com/en_US/help/topic/G200735480 Download Kindle Create (https://www.amazon.com/Kindle-Create/b?ie=UTF8&node=18292298011) Read the tutorial (https://kdp.amazon.com/en...
Mac
Instructions for Pages app on Mac are here (https://kdp.amazon.com/en_US/help/topic/G3TQWMMGK8528NDZ)
Use A Fake Name to publish
"You can publish on Amazon with a pseudonym, to preserve your identity, for whatever reason. A lot of people get confused because they know that they have to create a "publisher's account" at Amazo...
Self Publish on Amazon
Sign in at https://kdp.amazon.com/en_US/ Choose eBook or Paperback (see subtopics below)